From 57d593cb6933be74b953be090373b8b1b70c87d0 Mon Sep 17 00:00:00 2001 From: Jay Conrod Date: Fri, 17 Jan 2025 15:06:18 -0800 Subject: [PATCH 1/5] go/resourceusage: add a client for the Resource Usage API --- .bazelversion | 3 +- BUILD | 2 + MODULE.bazel | 49 +- MODULE.bazel.lock | 8528 ++++++++++++++++------------- go.mod | 17 +- go.sum | 54 + go/proto/BUILD | 38 + go/resourceusage/BUILD | 22 + go/resourceusage/README.md | 4 + go/resourceusage/resourceusage.go | 334 ++ infra/gopackagesdriver.sh | 2 +- 11 files changed, 5262 insertions(+), 3791 deletions(-) create mode 100644 go/proto/BUILD create mode 100644 go/resourceusage/BUILD create mode 100644 go/resourceusage/README.md create mode 100644 go/resourceusage/resourceusage.go diff --git a/.bazelversion b/.bazelversion index 7e50b18f..ae9a76b9 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1,2 +1 @@ -7.4.1 - +8.0.0 diff --git a/BUILD b/BUILD index 18ea9616..3d1eda4e 100644 --- a/BUILD +++ b/BUILD @@ -2,4 +2,6 @@ load("@gazelle//:def.bzl", "gazelle") gazelle(name = "gazelle") +# gazelle:build_file_name BUILD,BUILD.bazel +# gazelle:exclude buck2 # gazelle:exclude java diff --git a/MODULE.bazel b/MODULE.bazel index c3d0b455..599f2147 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,11 +1,18 @@ """EngFlow example project""" -module(name = "engflow-example", version = "0.0.0") +module( + name = "engflow-example", + version = "0.0.0", +) + http_file = use_repo_rule( - "@bazel_tools//tools/build_defs/repo:http.bzl", "http_file" + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_file", ) + http_archive = use_repo_rule( - "@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive" + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_archive", ) # Some file dependencies @@ -67,10 +74,11 @@ bazel_dep( version = "0.0.0-20240326-1c8d509c5", repo_name = "com_google_googleapis", ) - +bazel_dep(name = "engflowapis", version = "2024.11.04-11.10.20") bazel_dep(name = "rules_python", version = "1.0.0") PYTHON_VERSION = "3.12" + python = use_extension("@rules_python//python/extensions:python.bzl", "python") python.toolchain( is_default = True, @@ -78,17 +86,14 @@ python.toolchain( ) pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip") - pip.parse( hub_name = "pip", python_version = PYTHON_VERSION, requirements_lock = "//python:requirements_lock.txt", ) - use_repo(pip, "pip") bazel_dep(name = "rules_proto", version = "6.0.2") - bazel_dep(name = "rules_dotnet", version = "0.15.1") dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet") @@ -98,18 +103,23 @@ use_repo(dotnet, "dotnet_toolchains") register_toolchains("@dotnet_toolchains//:all") # https://github.com/bazelbuild/rules_go/blob/master/docs/go/core/bzlmod.md -bazel_dep(name = "rules_go", version = "0.48.1") -bazel_dep(name = "gazelle", version = "0.37.0") +bazel_dep(name = "rules_go", version = "0.52.0") +bazel_dep(name = "gazelle", version = "0.41.0") -GO_VERSION = "1.22.5" +GO_VERSION = "1.23.4" go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk") go_sdk.download(version = GO_VERSION) go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps") go_deps.from_file(go_mod = "//:go.mod") - -use_repo(go_deps, "com_github_google_go_cmp") +use_repo( + go_deps, + "com_github_google_go_cmp", + "org_golang_google_genproto_googleapis_api", + "org_golang_google_genproto_googleapis_rpc", + "org_golang_google_grpc", +) bazel_dep(name = "rules_java", version = "7.9.1") @@ -135,23 +145,20 @@ maven.install( # When updating versions, run `REPIN=1 bazel run @maven//:pin` fail_if_repin_required = True, lock_file = "//:maven_install.json", - - strict_visibility = True, repositories = [ "https://repo.maven.apache.org/maven2/", ], + strict_visibility = True, ) use_repo(maven, "maven") bazel_dep(name = "rules_kotlin", version = "1.9.6") bazel_dep(name = "rules_perl", version = "0.2.0") - bazel_dep( name = "rules_swift", version = "1.18.0", - repo_name = "build_bazel_rules_swift" + repo_name = "build_bazel_rules_swift", ) - bazel_dep(name = "aspect_rules_ts", version = "2.4.2") rules_ts_ext = use_extension( @@ -159,9 +166,7 @@ rules_ts_ext = use_extension( "ext", dev_dependency = True, ) - rules_ts_ext.deps() - use_repo(rules_ts_ext, "npm_typescript") # rules_scala is not yet bzlmod compatible: @@ -259,15 +264,16 @@ use_repo(rules_ts_ext, "npm_typescript") http_archive( name = "io_bazel_rules_scala", + patch_args = ["-p1"], + patches = ["//scala:rules_scala-6.6.0.patch"], sha256 = "e734eef95cf26c0171566bdc24d83bd82bdaf8ca7873bec6ce9b0d524bdaf05d", strip_prefix = "rules_scala-6.6.0", url = "https://github.com/bazelbuild/rules_scala/releases/download/v6.6.0/rules_scala-v6.6.0.tar.gz", - patches = ["//scala:rules_scala-6.6.0.patch"], - patch_args = ["-p1"], ) # This constant matches the default Scala version from rules_scala for now. SCALA_VERSION = "2.13.12" + SCALA_VERSIONS = [SCALA_VERSION] scala_config = use_extension("//scala/extensions:config.bzl", "scala_config") @@ -306,6 +312,7 @@ toolchains = [ ] scala_deps = use_extension("//scala/extensions:deps.bzl", "scala_deps") + [ ( [use_repo(scala_deps, repo + suffix) for repo in repos], diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 1b5f450f..71c2646f 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,5 +1,5 @@ { - "lockFileVersion": 11, + "lockFileVersion": 16, "registryFileHashes": { "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2", @@ -15,7 +15,6 @@ "https://bcr.bazel.build/modules/apple_support/1.13.0/MODULE.bazel": "7c8cdea7e031b7f9f67f0b497adf6d2c6a2675e9304ca93a9af6ed84eef5a524", "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85", "https://bcr.bazel.build/modules/apple_support/1.15.1/source.json": "517f2b77430084c541bc9be2db63fdcbb7102938c5f64c17ee60ffda2e5cf07b", - "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "7bee702b4862612f29333590f4b658a5832d433d6f8e4395f090e8f4e85d442f", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "6307fec451ba9962c1c969eb516ebfe1e46528f7fa92e1c9ac8646bef4cdaa3f", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.1/MODULE.bazel": "17ae5bb970187e51c39a5ac21190279a58d7eeba83bc43e4165547cc0cf8de4a", @@ -69,6 +68,7 @@ "https://bcr.bazel.build/modules/curl/8.4.0/source.json": "8b9532397af6a24be4ec118d8637b1f4e3e5a0d4be672c94b2275d675c7f7d6b", "https://bcr.bazel.build/modules/engflowapis-java/2025.01.17-13.50.20/MODULE.bazel": "3f669d84c9ea207e859a7c3c14a64fd3ffe071b8055579798b103bc7231811ad", "https://bcr.bazel.build/modules/engflowapis-java/2025.01.17-13.50.20/source.json": "32eff614463544d4f052dd42acc723f8ae0c85d44de4998b652d6a81870881bd", + "https://bcr.bazel.build/modules/engflowapis/2024.11.04-11.10.20/MODULE.bazel": "dde0db8a4b1455f2643698b57d5a04aa74f88b910f8f95ace28fce23f143cdf0", "https://bcr.bazel.build/modules/engflowapis/2025.01.17-13.50.20/MODULE.bazel": "43bb2b9e3a6cfd2fcfb04e888322322f141666d3e07b10016dffdbad04599849", "https://bcr.bazel.build/modules/engflowapis/2025.01.17-13.50.20/source.json": "2b51b58328efe1842b50715628120385e117e64faac219737da846938ff39fc4", "https://bcr.bazel.build/modules/gazelle/0.27.0/MODULE.bazel": "3446abd608295de6d90b4a8a118ed64a9ce11dcb3dda2dc3290a22056bd20996", @@ -77,8 +77,8 @@ "https://bcr.bazel.build/modules/gazelle/0.33.0/MODULE.bazel": "a13a0f279b462b784fb8dd52a4074526c4a2afe70e114c7d09066097a46b3350", "https://bcr.bazel.build/modules/gazelle/0.34.0/MODULE.bazel": "abdd8ce4d70978933209db92e436deb3a8b737859e9354fb5fd11fb5c2004c8a", "https://bcr.bazel.build/modules/gazelle/0.36.0/MODULE.bazel": "e375d5d6e9a6ca59b0cb38b0540bc9a05b6aa926d322f2de268ad267a2ee74c0", - "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel": "d1327ba0907d0275ed5103bfbbb13518f6c04955b402213319d0d6c0ce9839d4", - "https://bcr.bazel.build/modules/gazelle/0.37.0/source.json": "b3adc10e2394e7f63ea88fb1d622d4894bfe9ec6961c493ae9a887723ab16831", + "https://bcr.bazel.build/modules/gazelle/0.41.0/MODULE.bazel": "fdce8a8f5129d5b6d693d91cb191d0a014fdcb88e9094e528325a7165de2a826", + "https://bcr.bazel.build/modules/gazelle/0.41.0/source.json": "bc00c665344d775b5cae6064608262e0478789c523677d40eef8f85031c6bfda", "https://bcr.bazel.build/modules/google_benchmark/1.8.2/MODULE.bazel": "a70cf1bba851000ba93b58ae2f6d76490a9feb74192e57ab8e8ff13c34ec50cb", "https://bcr.bazel.build/modules/google_benchmark/1.8.4/MODULE.bazel": "c6d54a11dcf64ee63545f42561eda3fd94c1b5f5ebe1357011de63ae33739d5e", "https://bcr.bazel.build/modules/google_benchmark/1.8.4/source.json": "84590f7bc5a1fd99e1ef274ee16bb41c214f705e62847b42e705010dfa81fe53", @@ -131,7 +131,8 @@ "https://bcr.bazel.build/modules/protobuf/28.2/MODULE.bazel": "c0c8e51757df486d0314fa290e174d707bad4a6c2aa5ccb08a4b4abd76a23e90", "https://bcr.bazel.build/modules/protobuf/29.0-rc2/MODULE.bazel": "6241d35983510143049943fc0d57937937122baf1b287862f9dc8590fc4c37df", "https://bcr.bazel.build/modules/protobuf/29.0-rc3/MODULE.bazel": "33c2dfa286578573afc55a7acaea3cada4122b9631007c594bf0729f41c8de92", - "https://bcr.bazel.build/modules/protobuf/29.0-rc3/source.json": "c16a6488fb279ef578da7098e605082d72ed85fc8d843eaae81e7d27d0f4625d", + "https://bcr.bazel.build/modules/protobuf/29.0/MODULE.bazel": "319dc8bf4c679ff87e71b1ccfb5a6e90a6dbc4693501d471f48662ac46d04e4e", + "https://bcr.bazel.build/modules/protobuf/29.0/source.json": "b857f93c796750eef95f0d61ee378f3420d00ee1dd38627b27193aa482f4f981", "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0", "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573", "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858", @@ -149,6 +150,7 @@ "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", "https://bcr.bazel.build/modules/rules_cc/0.0.10/MODULE.bazel": "ec1705118f7eaedd6e118508d3d26deba2a4e76476ada7e0e3965211be012002", "https://bcr.bazel.build/modules/rules_cc/0.0.13/MODULE.bazel": "0e8529ed7b323dad0775ff924d2ae5af7640b23553dfcd4d34344c7e7a867191", + "https://bcr.bazel.build/modules/rules_cc/0.0.14/MODULE.bazel": "5e343a3aac88b8d7af3b1b6d2093b55c347b8eefc2e7d1442f7a02dc8fea48ac", "https://bcr.bazel.build/modules/rules_cc/0.0.15/MODULE.bazel": "6704c35f7b4a72502ee81f61bf88706b54f06b3cbe5558ac17e2e14666cd5dcc", "https://bcr.bazel.build/modules/rules_cc/0.0.16/MODULE.bazel": "7661303b8fc1b4d7f532e54e9d6565771fea666fbdf839e0a86affcd02defe87", "https://bcr.bazel.build/modules/rules_cc/0.0.16/source.json": "227e83737046aa4f50015da48e98e0d8ab42fd0ec74d8d653b6cc9f9a357f200", @@ -172,8 +174,9 @@ "https://bcr.bazel.build/modules/rules_go/0.45.1/MODULE.bazel": "6d7884f0edf890024eba8ab31a621faa98714df0ec9d512389519f0edff0281a", "https://bcr.bazel.build/modules/rules_go/0.46.0/MODULE.bazel": "3477df8bdcc49e698b9d25f734c4f3a9f5931ff34ee48a2c662be168f5f2d3fd", "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel": "d00ebcae0908ee3f5e6d53f68677a303d6d59a77beef879598700049c3980a03", - "https://bcr.bazel.build/modules/rules_go/0.48.1/MODULE.bazel": "ad27296e268624d7d53043fe5ff88d5486e7a29596336f629b379b83c67e6d8b", - "https://bcr.bazel.build/modules/rules_go/0.48.1/source.json": "83321289aa500090871d8f761d991f0534946414640cce5c18d2df44cff8e082", + "https://bcr.bazel.build/modules/rules_go/0.50.1/MODULE.bazel": "b91a308dc5782bb0a8021ad4330c81fea5bda77f96b9e4c117b9b9c8f6665ee0", + "https://bcr.bazel.build/modules/rules_go/0.52.0/MODULE.bazel": "0cf080a2706aa8fc9abf64286cee60fdf0238db37b7f1793b0f7d550d59ea3ae", + "https://bcr.bazel.build/modules/rules_go/0.52.0/source.json": "441bc7591044993dce9fb0377fcadf3086d6afac621b909d17d53858a4a1b8d4", "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74", "https://bcr.bazel.build/modules/rules_java/5.1.0/MODULE.bazel": "324b6478b0343a3ce7a9add8586ad75d24076d6d43d2f622990b9c1cfd8a1b15", "https://bcr.bazel.build/modules/rules_java/5.3.5/MODULE.bazel": "a4ec4f2db570171e3e5eb753276ee4b389bae16b96207e9d3230895c99644b86", @@ -186,10 +189,10 @@ "https://bcr.bazel.build/modules/rules_java/7.3.2/MODULE.bazel": "50dece891cfdf1741ea230d001aa9c14398062f2b7c066470accace78e412bc2", "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel": "a592852f8a3dd539e82ee6542013bf2cadfc4c6946be8941e189d224500a8934", "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe", - "https://bcr.bazel.build/modules/rules_java/7.6.5/MODULE.bazel": "481164be5e02e4cab6e77a36927683263be56b7e36fef918b458d7a8a1ebadb1", "https://bcr.bazel.build/modules/rules_java/7.9.1/MODULE.bazel": "1cc411a23b701d89a87c15219a62fa27cef122509577054f11b1d3b502fbe537", "https://bcr.bazel.build/modules/rules_java/8.3.2/MODULE.bazel": "7336d5511ad5af0b8615fdc7477535a2e4e723a357b6713af439fe8cf0195017", "https://bcr.bazel.build/modules/rules_java/8.5.1/MODULE.bazel": "d8a9e38cc5228881f7055a6079f6f7821a073df3744d441978e7a43e20226939", + "https://bcr.bazel.build/modules/rules_java/8.6.1/MODULE.bazel": "f4808e2ab5b0197f094cabce9f4b006a27766beb6a9975931da07099560ca9c2", "https://bcr.bazel.build/modules/rules_java/8.7.0/MODULE.bazel": "7670fc42983b91b30a7142bbd3595ff6593d2bff908bc100b2e838f223c0653a", "https://bcr.bazel.build/modules/rules_java/8.7.0/source.json": "14dc75cebf61cea04a57bb1f66aec8331598c99717fcc21bdb1ad0d16ffcbae5", "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", @@ -197,6 +200,7 @@ "https://bcr.bazel.build/modules/rules_jvm_external/5.2/MODULE.bazel": "d9351ba35217ad0de03816ef3ed63f89d411349353077348a45348b096615036", "https://bcr.bazel.build/modules/rules_jvm_external/5.3/MODULE.bazel": "bf93870767689637164657731849fb887ad086739bd5d360d90007a581d5527d", "https://bcr.bazel.build/modules/rules_jvm_external/6.0/MODULE.bazel": "37c93a5a78d32e895d52f86a8d0416176e915daabd029ccb5594db422e87c495", + "https://bcr.bazel.build/modules/rules_jvm_external/6.1/MODULE.bazel": "75b5fec090dbd46cf9b7d8ea08cf84a0472d92ba3585b476f44c326eda8059c4", "https://bcr.bazel.build/modules/rules_jvm_external/6.2/MODULE.bazel": "36a6e52487a855f33cb960724eb56547fa87e2c98a0474c3acad94339d7f8e99", "https://bcr.bazel.build/modules/rules_jvm_external/6.3/MODULE.bazel": "c998e060b85f71e00de5ec552019347c8bca255062c990ac02d051bb80a38df0", "https://bcr.bazel.build/modules/rules_jvm_external/6.3/source.json": "6f5f5a5a4419ae4e37c35a5bb0a6ae657ed40b7abc5a5189111b47fcebe43197", @@ -233,11 +237,13 @@ "https://bcr.bazel.build/modules/rules_python/0.29.0/MODULE.bazel": "2ac8cd70524b4b9ec49a0b8284c79e4cd86199296f82f6e0d5da3f783d660c82", "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58", "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", + "https://bcr.bazel.build/modules/rules_python/0.40.0/MODULE.bazel": "9d1a3cd88ed7d8e39583d9ffe56ae8a244f67783ae89b60caafc9f5cf318ada7", "https://bcr.bazel.build/modules/rules_python/1.0.0/MODULE.bazel": "898a3d999c22caa585eb062b600f88654bf92efb204fa346fb55f6f8edffca43", "https://bcr.bazel.build/modules/rules_python/1.0.0/source.json": "b0162a65c6312e45e7912e39abd1a7f8856c2c7e41ecc9b6dc688a6f6400a917", "https://bcr.bazel.build/modules/rules_rust/0.45.1/MODULE.bazel": "a69d0db3a958fab2c6520961e1b2287afcc8b36690fd31bbc4f6f7391397150d", "https://bcr.bazel.build/modules/rules_shell/0.2.0/MODULE.bazel": "fda8a652ab3c7d8fee214de05e7a9916d8b28082234e8d2c0094505c5268ed3c", - "https://bcr.bazel.build/modules/rules_shell/0.2.0/source.json": "7f27af3c28037d9701487c4744b5448d26537cc66cdef0d8df7ae85411f8de95", + "https://bcr.bazel.build/modules/rules_shell/0.3.0/MODULE.bazel": "de4402cd12f4cc8fda2354fce179fdb068c0b9ca1ec2d2b17b3e21b24c1a937b", + "https://bcr.bazel.build/modules/rules_shell/0.3.0/source.json": "c55ed591aa5009401ddf80ded9762ac32c358d2517ee7820be981e2de9756cf3", "https://bcr.bazel.build/modules/rules_swift/1.18.0/MODULE.bazel": "a6aba73625d0dc64c7b4a1e831549b6e375fbddb9d2dde9d80c9de6ec45b24c9", "https://bcr.bazel.build/modules/rules_swift/1.18.0/source.json": "9e636cabd446f43444ea2662341a9cbb74ecd87ab0557225ae73f1127cb7ff52", "https://bcr.bazel.build/modules/stardoc/0.5.0/MODULE.bazel": "f9f1f46ba8d9c3362648eea571c6f9100680efc44913618811b58cc9c02cd678", @@ -246,6 +252,7 @@ "https://bcr.bazel.build/modules/stardoc/0.5.4/MODULE.bazel": "6569966df04610b8520957cb8e97cf2e9faac2c0309657c537ab51c16c18a2a4", "https://bcr.bazel.build/modules/stardoc/0.5.6/MODULE.bazel": "c43dabc564990eeab55e25ed61c07a1aadafe9ece96a4efabb3f8bf9063b71ef", "https://bcr.bazel.build/modules/stardoc/0.7.0/MODULE.bazel": "05e3d6d30c099b6770e97da986c53bd31844d7f13d41412480ea265ac9e8079c", + "https://bcr.bazel.build/modules/stardoc/0.7.1/MODULE.bazel": "3548faea4ee5dda5580f9af150e79d0f6aea934fc60c1cc50f4efdd9420759e7", "https://bcr.bazel.build/modules/stardoc/0.7.2/MODULE.bazel": "fc152419aa2ea0f51c29583fab1e8c99ddefd5b3778421845606ee628629e0e5", "https://bcr.bazel.build/modules/stardoc/0.7.2/source.json": "58b029e5e901d6802967754adf0a9056747e8176f017cfe3607c0851f4d42216", "https://bcr.bazel.build/modules/upb/0.0.0-20211020-160625a/MODULE.bazel": "6cced416be2dc5b9c05efd5b997049ba795e5e4e6fafbe1624f4587767638928", @@ -267,14 +274,13 @@ "//scala/extensions:config.bzl%scala_config": { "general": { "bzlTransitiveDigest": "4eKgKFzcNgWncPUTQAEx30GHX1OXaonHvRH6AInB7uA=", - "usagesDigest": "MWECBek7abBnY/Ad9tVRTGcKK21h9Uv6esEeHXt2ABs=", + "usagesDigest": "UlR8luTF8Kcr49xMrJuZymTxf8HusrBQKt4E8hLv03A=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "io_bazel_rules_scala_config": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//:scala_config.bzl", - "ruleClassName": "_config_repository", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//:scala_config.bzl%_config_repository", "attributes": { "scala_version": "2.13.12", "scala_versions": [ @@ -292,29 +298,21 @@ [ "", "io_bazel_rules_scala", - "_main~_repo_rules~io_bazel_rules_scala" + "+_repo_rules2+io_bazel_rules_scala" ] ] } }, "//scala/extensions:deps.bzl%scala_deps": { "general": { - "bzlTransitiveDigest": "aeybq63LarsvvVETVdoGCITgx4AEGbFZE1y50YlqzZk=", - "usagesDigest": "ZVUm2SXh409jDBDtXI5hgIke68bh9cETKsCVyZ0VJRM=", + "bzlTransitiveDigest": "mYj5D5R3hMlRTHjNvsLKuCNL/9IELcT5rJTYqw4S0IM=", + "usagesDigest": "sE/PK40vHwwH2pfFo82m2MizQL6cBXb0RTH223dtYNI=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { - "io_bazel_rules_scala_scalatest_freespec": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "io_bazel_rules_scala_scalatest_freespec_2_13_12" - } - }, "io_bazel_rules_scala_scala_library_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar", @@ -336,29 +334,27 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_mustmatchers": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scala_library": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scalatest_mustmatchers_2_13_12" + "target": "io_bazel_rules_scala_scala_library_2_13_12" } }, - "io_bazel_rules_scala_scala_reflect_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scala_compiler_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", - "https://jcenter.bintray.com/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar" ], "srcjar_urls": [], - "coordinates": "org.scala-lang:scala-reflect:2.13.12", + "coordinates": "org.scala-lang:scala-compiler:2.13.12", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scala_reflect_2_13_12", - "artifact_sha256": "c648ceb93a9fcbd22603e0be3d6a156723ae661f516c772a550a088bb3cbca7a", + "generated_rule_name": "io_bazel_rules_scala_scala_compiler_2_13_12", + "artifact_sha256": "583adb1ffa7b29fdbfdd6f4c97a396af06a8a91625d059823bba1b7172242d6a", "licenses": [ "notice" ], @@ -367,27 +363,27 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_freespec_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scala_compiler": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scala_compiler_2_13_12" + } + }, + "io_bazel_rules_scala_scala_reflect_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" - ], - "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar" ], - "coordinates": "org.scalatest:scalatest-freespec_2.13:3.2.9", + "srcjar_urls": [], + "coordinates": "org.scala-lang:scala-reflect:2.13.12", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_freespec_2_13_12", - "artifact_sha256": "db3467bb0b34c1ca8d9830cf40179e2900ac01d5119f7a1b6bdcef30adb62214", + "generated_rule_name": "io_bazel_rules_scala_scala_reflect_2_13_12", + "artifact_sha256": "c648ceb93a9fcbd22603e0be3d6a156723ae661f516c772a550a088bb3cbca7a", "licenses": [ "notice" ], @@ -396,36 +392,27 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "io_bazel_rules_scala_scalatest_2_13_12" - } - }, - "io_bazel_rules_scala_scalatest_flatspec": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scala_reflect": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scalatest_flatspec_2_13_12" + "target": "io_bazel_rules_scala_scala_reflect_2_13_12" } }, - "io_bazel_rules_scala_scala_compiler_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scala_xml_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", - "https://jcenter.bintray.com/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar" ], "srcjar_urls": [], - "coordinates": "org.scala-lang:scala-compiler:2.13.12", + "coordinates": "org.scala-lang.modules:scala-xml_2.13:1.3.0", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scala_compiler_2_13_12", - "artifact_sha256": "583adb1ffa7b29fdbfdd6f4c97a396af06a8a91625d059823bba1b7172242d6a", + "generated_rule_name": "io_bazel_rules_scala_scala_xml_2_13_12", + "artifact_sha256": "6d96d45a7fc6fc7ab69bdbac841b48cf67ab109f048c8db375ae4effae524f39", "licenses": [ "notice" ], @@ -434,27 +421,27 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scala_xml": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scala_xml_2_13_12" + } + }, + "io_bazel_rules_scala_scala_parser_combinators_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" - ], - "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" ], - "coordinates": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", + "srcjar_urls": [], + "coordinates": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12", - "artifact_sha256": "39a4eefa409fed5a32eff3647aa4f80628202d966e3cb6a9f01e88dcfae75e4c", + "generated_rule_name": "io_bazel_rules_scala_scala_parser_combinators_2_13_12", + "artifact_sha256": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", "licenses": [ "notice" ], @@ -463,23 +450,14 @@ "testonly_": false } }, - "io_bazel_rules_scala_scala_reflect": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "io_bazel_rules_scala_scala_reflect_2_13_12" - } - }, - "io_bazel_rules_scala_scala_library": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scala_parser_combinators": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scala_library_2_13_12" + "target": "io_bazel_rules_scala_scala_parser_combinators_2_13_12" } }, "org_scalameta_semanticdb_scalac_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalameta/semanticdb-scalac_2.13.12/4.8.4/semanticdb-scalac_2.13.12-4.8.4.jar", @@ -503,27 +481,32 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_flatspec_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "org_scalameta_semanticdb_scalac": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "org_scalameta_semanticdb_scalac_2_13_12" + } + }, + "io_bazel_rules_scala_scalatest_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" ], "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" ], - "coordinates": "org.scalatest:scalatest-flatspec_2.13:3.2.9", + "coordinates": "org.scalatest:scalatest_2.13:3.2.9", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_flatspec_2_13_12", - "artifact_sha256": "6a1bc2f522105b4eda53c225f3d5cbdabbf3e9375136dde57a5b43846369f75a", + "generated_rule_name": "io_bazel_rules_scala_scalatest_2_13_12", + "artifact_sha256": "c5d283a5ec028bf06f83d70e2b88d70a149dd574d19e79e8389b49483914b08b", "licenses": [ "notice" ], @@ -532,23 +515,48 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_shouldmatchers": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scalatest": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12" + "target": "io_bazel_rules_scala_scalatest_2_13_12" } }, - "io_bazel_rules_scala_scala_compiler": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scalatest_compatible_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { - "target": "io_bazel_rules_scala_scala_compiler_2_13_12" + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-compatible:jar:3.2.9", + "rule_name": "scala_import", + "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", + "generated_rule_name": "io_bazel_rules_scala_scalatest_compatible_2_13_12", + "artifact_sha256": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", + "licenses": [ + "notice" + ], + "deps": [], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_compatible": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scalatest_compatible_2_13_12" } }, "io_bazel_rules_scala_scalatest_core_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", @@ -575,22 +583,32 @@ "testonly_": false } }, - "io_bazel_rules_scala_scala_xml_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scalatest_core": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scalatest_core_2_13_12" + } + }, + "io_bazel_rules_scala_scalatest_featurespec_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", - "https://jcenter.bintray.com/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" ], - "srcjar_urls": [], - "coordinates": "org.scala-lang.modules:scala-xml_2.13:1.3.0", + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-featurespec_2.13:3.2.9", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scala_xml_2_13_12", - "artifact_sha256": "6d96d45a7fc6fc7ab69bdbac841b48cf67ab109f048c8db375ae4effae524f39", + "generated_rule_name": "io_bazel_rules_scala_scalatest_featurespec_2_13_12", + "artifact_sha256": "f8ec83a39554c1e44f6ef5e13d9b87bf8257067b0dad8ee6012fec36e318036d", "licenses": [ "notice" ], @@ -599,41 +617,32 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_compatible": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "io_bazel_rules_scala_scalatest_compatible_2_13_12" - } - }, "io_bazel_rules_scala_scalatest_featurespec": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_featurespec_2_13_12" } }, - "io_bazel_rules_scala_scalatest_matchers_core_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scalatest_flatspec_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar" ], "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9-sources.jar" ], - "coordinates": "org.scalatest:scalatest-matchers-core_2.13:3.2.9", + "coordinates": "org.scalatest:scalatest-flatspec_2.13:3.2.9", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_matchers_core_2_13_12", - "artifact_sha256": "b86ed6f0986d005f4d54af5effdb73a18fe5741533f6663631d17a0731b9616f", + "generated_rule_name": "io_bazel_rules_scala_scalatest_flatspec_2_13_12", + "artifact_sha256": "6a1bc2f522105b4eda53c225f3d5cbdabbf3e9375136dde57a5b43846369f75a", "licenses": [ "notice" ], @@ -642,51 +651,32 @@ "testonly_": false } }, - "io_bazel_rules_scala_scala_parser_combinators_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scalatest_flatspec": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scalatest_flatspec_2_13_12" + } + }, + "io_bazel_rules_scala_scalatest_freespec_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", - "https://jcenter.bintray.com/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar" - ], - "srcjar_urls": [], - "coordinates": "org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2", - "rule_name": "scala_import", - "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scala_parser_combinators_2_13_12", - "artifact_sha256": "5c285b72e6dc0a98e99ae0a1ceeb4027dab9adfa441844046bd3f19e0efdcb54", - "licenses": [ - "notice" - ], - "deps": [], - "runtime_deps": [], - "testonly_": false - } - }, - "io_bazel_rules_scala_scalactic_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", - "attributes": { - "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar" ], "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9-sources.jar" ], - "coordinates": "org.scalactic:scalactic_2.13:3.2.9", + "coordinates": "org.scalatest:scalatest-freespec_2.13:3.2.9", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalactic_2_13_12", - "artifact_sha256": "dcb853409202fee6f8e7216b363aab5b68edc07a51d27b61d5bf3fdf4418c9da", + "generated_rule_name": "io_bazel_rules_scala_scalatest_freespec_2_13_12", + "artifact_sha256": "db3467bb0b34c1ca8d9830cf40179e2900ac01d5119f7a1b6bdcef30adb62214", "licenses": [ "notice" ], @@ -695,45 +685,14 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_matchers_core": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "io_bazel_rules_scala_scalatest_matchers_core_2_13_12" - } - }, - "io_bazel_rules_scala_scalatest_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scalatest_freespec": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar" - ], - "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9-sources.jar" - ], - "coordinates": "org.scalatest:scalatest_2.13:3.2.9", - "rule_name": "scala_import", - "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_2_13_12", - "artifact_sha256": "c5d283a5ec028bf06f83d70e2b88d70a149dd574d19e79e8389b49483914b08b", - "licenses": [ - "notice" - ], - "deps": [], - "runtime_deps": [], - "testonly_": false + "target": "io_bazel_rules_scala_scalatest_freespec_2_13_12" } }, "io_bazel_rules_scala_scalatest_funsuite_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", @@ -760,23 +719,14 @@ "testonly_": false } }, - "io_bazel_rules_scala_scala_parser_combinators": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "io_bazel_rules_scala_scala_parser_combinators_2_13_12" - } - }, "io_bazel_rules_scala_scalatest_funsuite": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_funsuite_2_13_12" } }, "io_bazel_rules_scala_scalatest_funspec_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", @@ -803,41 +753,32 @@ "testonly_": false } }, - "org_scalameta_semanticdb_scalac": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", - "attributes": { - "target": "org_scalameta_semanticdb_scalac_2_13_12" - } - }, - "io_bazel_rules_scala_scalatest_core": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scalatest_funspec": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scalatest_core_2_13_12" + "target": "io_bazel_rules_scala_scalatest_funspec_2_13_12" } }, - "io_bazel_rules_scala_scalatest_compatible_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scalatest_matchers_core_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar" ], "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9-sources.jar" ], - "coordinates": "org.scalatest:scalatest-compatible:jar:3.2.9", + "coordinates": "org.scalatest:scalatest-matchers-core_2.13:3.2.9", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_compatible_2_13_12", - "artifact_sha256": "7e5f1193af2fd88c432c4b80ce3641e4b1d062f421d8a0fcc43af9a19bb7c2eb", + "generated_rule_name": "io_bazel_rules_scala_scalatest_matchers_core_2_13_12", + "artifact_sha256": "b86ed6f0986d005f4d54af5effdb73a18fe5741533f6663631d17a0731b9616f", "licenses": [ "notice" ], @@ -846,27 +787,32 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalatest_featurespec_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "io_bazel_rules_scala_scalatest_matchers_core": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scalatest_matchers_core_2_13_12" + } + }, + "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar" ], "srcjar_urls": [ - "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", - "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", - "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar", - "https://jcenter.bintray.com/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9-sources.jar" + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9-sources.jar" ], - "coordinates": "org.scalatest:scalatest-featurespec_2.13:3.2.9", + "coordinates": "org.scalatest:scalatest-shouldmatchers_2.13:3.2.9", "rule_name": "scala_import", "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", - "generated_rule_name": "io_bazel_rules_scala_scalatest_featurespec_2_13_12", - "artifact_sha256": "f8ec83a39554c1e44f6ef5e13d9b87bf8257067b0dad8ee6012fec36e318036d", + "generated_rule_name": "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12", + "artifact_sha256": "39a4eefa409fed5a32eff3647aa4f80628202d966e3cb6a9f01e88dcfae75e4c", "licenses": [ "notice" ], @@ -875,16 +821,14 @@ "testonly_": false } }, - "io_bazel_rules_scala_scala_xml": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scalatest_shouldmatchers": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scala_xml_2_13_12" + "target": "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12" } }, "io_bazel_rules_scala_scalatest_mustmatchers_2_13_12": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", - "ruleClassName": "jvm_import_external", + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", @@ -911,18 +855,44 @@ "testonly_": false } }, - "io_bazel_rules_scala_scalactic": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scalatest_mustmatchers": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", "attributes": { - "target": "io_bazel_rules_scala_scalactic_2_13_12" + "target": "io_bazel_rules_scala_scalatest_mustmatchers_2_13_12" } }, - "io_bazel_rules_scala_scalatest_funspec": { - "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", - "ruleClassName": "_alias_repository", + "io_bazel_rules_scala_scalactic_2_13_12": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", "attributes": { - "target": "io_bazel_rules_scala_scalatest_funspec_2_13_12" + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", + "https://jcenter.bintray.com/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar", + "https://jcenter.bintray.com/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9-sources.jar" + ], + "coordinates": "org.scalactic:scalactic_2.13:3.2.9", + "rule_name": "scala_import", + "rule_load": "load(\"@io_bazel_rules_scala//scala:scala_import.bzl\", \"scala_import\")", + "generated_rule_name": "io_bazel_rules_scala_scalactic_2_13_12", + "artifact_sha256": "dcb853409202fee6f8e7216b363aab5b68edc07a51d27b61d5bf3fdf4418c9da", + "licenses": [ + "notice" + ], + "deps": [], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalactic": { + "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "target": "io_bazel_rules_scala_scalactic_2_13_12" } } }, @@ -930,374 +900,385 @@ [ "", "io_bazel_rules_scala", - "_main~_repo_rules~io_bazel_rules_scala" + "+_repo_rules2+io_bazel_rules_scala" ], [ - "_main~_repo_rules~io_bazel_rules_scala", + "+_repo_rules2+io_bazel_rules_scala", "bazel_skylib", - "bazel_skylib~" + "bazel_skylib+" ], [ - "_main~_repo_rules~io_bazel_rules_scala", + "+_repo_rules2+io_bazel_rules_scala", "bazel_tools", "bazel_tools" ], [ - "_main~_repo_rules~io_bazel_rules_scala", + "+_repo_rules2+io_bazel_rules_scala", "io_bazel_rules_scala", - "_main~_repo_rules~io_bazel_rules_scala" + "+_repo_rules2+io_bazel_rules_scala" ], [ - "_main~_repo_rules~io_bazel_rules_scala", + "+_repo_rules2+io_bazel_rules_scala", "io_bazel_rules_scala_config", - "_main~scala_config~io_bazel_rules_scala_config" + "+scala_config+io_bazel_rules_scala_config" + ], + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "bazel_tools", + "rules_java", + "rules_java+" ], [ + "protobuf+", + "proto_bazel_features", + "bazel_features+" + ], + [ + "rules_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_java+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_java+", "bazel_tools", + "bazel_tools" + ], + [ + "rules_java+", + "com_google_protobuf", + "protobuf+" + ], + [ + "rules_java+", + "compatibility_proxy", + "rules_java++compatibility_proxy+compatibility_proxy" + ], + [ + "rules_java+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_java++compatibility_proxy+compatibility_proxy", "rules_java", - "rules_java~" + "rules_java+" ] ] } }, - "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { + "@@apple_support+//crosstool:setup.bzl%apple_cc_configure_extension": { "general": { - "bzlTransitiveDigest": "ltCGFbl/LQQZXn/LEMXfKX7pGwyqNiOCHcmiQW0tmjM=", - "usagesDigest": "AdcfeoQL3+teeMJt17kg4rBZzPPjZtuypdD9FgSOVEg=", + "bzlTransitiveDigest": "pd/h9zu+PbVBnRwZ3tnvvnAydlf0zxd9Ov95CD7vJIM=", + "usagesDigest": "4pq0kW0KxGuBT70a6oHQKwZTRnKzsMjwioRC4NdtYng=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "local_config_apple_cc_toolchains": { - "bzlFile": "@@apple_support~//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf_toolchains", + "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf_toolchains", "attributes": {} }, "local_config_apple_cc": { - "bzlFile": "@@apple_support~//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf", + "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf", "attributes": {} } }, "recordedRepoMappingEntries": [ [ - "apple_support~", + "apple_support+", "bazel_tools", "bazel_tools" + ], + [ + "bazel_tools", + "rules_cc", + "rules_cc+" ] ] } }, - "@@aspect_bazel_lib~//lib:extensions.bzl%toolchains": { + "@@aspect_bazel_lib+//lib:extensions.bzl%toolchains": { "general": { - "bzlTransitiveDigest": "wbW/fEUW6Ya4TMFK5PPIgAwWuJm4AQFeqnOO5DbiZjw=", - "usagesDigest": "lGjfF/PYotxwxMgp2dKTiERimy1qreT6xheEBNOA7Yg=", + "bzlTransitiveDigest": "TGnRoh+5JjQRL6rkWCQneJpM89XjhPyydRXWIn0HmDw=", + "usagesDigest": "YkXmRQgtO1cA1ngaylV13VwFl6DjNVcWUO9XUnpxOAY=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "copy_directory_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", "attributes": { "platform": "darwin_amd64" } }, "copy_directory_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", "attributes": { "platform": "darwin_arm64" } }, "copy_directory_freebsd_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", "attributes": { "platform": "freebsd_amd64" } }, "copy_directory_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", "attributes": { "platform": "linux_amd64" } }, "copy_directory_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", "attributes": { "platform": "linux_arm64" } }, "copy_directory_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", "attributes": { "platform": "windows_amd64" } }, "copy_directory_toolchains": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", - "ruleClassName": "copy_directory_toolchains_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_toolchains_repo", "attributes": { "user_repository_name": "copy_directory" } }, "copy_to_directory_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", "attributes": { "platform": "darwin_amd64" } }, "copy_to_directory_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", "attributes": { "platform": "darwin_arm64" } }, "copy_to_directory_freebsd_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", "attributes": { "platform": "freebsd_amd64" } }, "copy_to_directory_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", "attributes": { "platform": "linux_amd64" } }, "copy_to_directory_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", "attributes": { "platform": "linux_arm64" } }, "copy_to_directory_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", "attributes": { "platform": "windows_amd64" } }, "copy_to_directory_toolchains": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", - "ruleClassName": "copy_to_directory_toolchains_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_toolchains_repo", "attributes": { "user_repository_name": "copy_to_directory" } }, "jq_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", "attributes": { "platform": "darwin_amd64", "version": "1.6" } }, "jq_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", "attributes": { "platform": "darwin_arm64", "version": "1.6" } }, "jq_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", "attributes": { "platform": "linux_amd64", "version": "1.6" } }, "jq_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", "attributes": { "platform": "windows_amd64", "version": "1.6" } }, "jq": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_host_alias_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_host_alias_repo", "attributes": {} }, "jq_toolchains": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", - "ruleClassName": "jq_toolchains_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_toolchains_repo", "attributes": { "user_repository_name": "jq" } }, "yq_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "darwin_amd64", "version": "4.25.2" } }, "yq_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "darwin_arm64", "version": "4.25.2" } }, "yq_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "linux_amd64", "version": "4.25.2" } }, "yq_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "linux_arm64", "version": "4.25.2" } }, "yq_linux_s390x": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "linux_s390x", "version": "4.25.2" } }, "yq_linux_ppc64le": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "linux_ppc64le", "version": "4.25.2" } }, "yq_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", "attributes": { "platform": "windows_amd64", "version": "4.25.2" } }, "yq": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_host_alias_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_host_alias_repo", "attributes": {} }, "yq_toolchains": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", - "ruleClassName": "yq_toolchains_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_toolchains_repo", "attributes": { "user_repository_name": "yq" } }, "coreutils_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", "attributes": { "platform": "darwin_amd64", "version": "0.0.16" } }, "coreutils_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", "attributes": { "platform": "darwin_arm64", "version": "0.0.16" } }, "coreutils_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", "attributes": { "platform": "linux_amd64", "version": "0.0.16" } }, "coreutils_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", "attributes": { "platform": "linux_arm64", "version": "0.0.16" } }, "coreutils_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", "attributes": { "platform": "windows_amd64", "version": "0.0.16" } }, "coreutils_toolchains": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", - "ruleClassName": "coreutils_toolchains_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_toolchains_repo", "attributes": { "user_repository_name": "coreutils" } }, "expand_template_darwin_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", "attributes": { "platform": "darwin_amd64" } }, "expand_template_darwin_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", "attributes": { "platform": "darwin_arm64" } }, "expand_template_freebsd_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", "attributes": { "platform": "freebsd_amd64" } }, "expand_template_linux_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", "attributes": { "platform": "linux_amd64" } }, "expand_template_linux_arm64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", "attributes": { "platform": "linux_arm64" } }, "expand_template_windows_amd64": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_platform_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", "attributes": { "platform": "windows_amd64" } }, "expand_template_toolchains": { - "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", - "ruleClassName": "expand_template_toolchains_repo", + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_toolchains_repo", "attributes": { "user_repository_name": "expand_template" } @@ -1305,39 +1286,38 @@ }, "recordedRepoMappingEntries": [ [ - "aspect_bazel_lib~", + "aspect_bazel_lib+", "aspect_bazel_lib", - "aspect_bazel_lib~" + "aspect_bazel_lib+" ], [ - "aspect_bazel_lib~", + "aspect_bazel_lib+", "bazel_skylib", - "bazel_skylib~" + "bazel_skylib+" ], [ - "aspect_bazel_lib~", + "aspect_bazel_lib+", "bazel_tools", "bazel_tools" ] ] } }, - "@@aspect_rules_ts~//ts:extensions.bzl%ext": { + "@@aspect_rules_ts+//ts:extensions.bzl%ext": { "general": { - "bzlTransitiveDigest": "1X9STUnwmBLzzWERVX6QAHTZVHXkhVNUNaw1KokzY/Q=", - "usagesDigest": "p24LaV+G3jYVOLS4oBkDREIcwMVeU6a4XM4dymPL9YE=", + "bzlTransitiveDigest": "DkprsmJnGdSGetMfiEXwp+nh9ZAbKZLQ9Uoi0/2Phrs=", + "usagesDigest": "YFCF4Pe3ZMqh53Xb1GbuZYKE5Q121NDwst+POer5vxE=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "npm_typescript": { - "bzlFile": "@@aspect_rules_ts~//ts/private:npm_repositories.bzl", - "ruleClassName": "http_archive_version", + "repoRuleId": "@@aspect_rules_ts+//ts/private:npm_repositories.bzl%http_archive_version", "attributes": { "bzlmod": true, "version": "5.4.5", "integrity": "", - "build_file": "@@aspect_rules_ts~//ts:BUILD.typescript", + "build_file": "@@aspect_rules_ts+//ts:BUILD.typescript", "build_file_substitutions": { "bazel_worker_version": "5.4.2", "google_protobuf_version": "3.20.1" @@ -1350,24 +1330,23 @@ }, "recordedRepoMappingEntries": [ [ - "aspect_rules_ts~", + "aspect_rules_ts+", "bazel_tools", "bazel_tools" ] ] } }, - "@@googleapis~//:extensions.bzl%switched_rules": { + "@@googleapis+//:extensions.bzl%switched_rules": { "general": { "bzlTransitiveDigest": "vG6fuTzXD8MMvHWZEQud0MMH7eoC4GXY0va7VrFFh04=", - "usagesDigest": "1T6sqB87b1P6IjIxJoREqS/Ml3hKQSO17RwGXpxvEiw=", + "usagesDigest": "V36Q86N1GYjjBF+3dZXH82M6V6/HSysCoOngw4dEtVk=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "com_google_googleapis_imports": { - "bzlFile": "@@googleapis~//:repository_rules.bzl", - "ruleClassName": "switched_rules", + "repoRuleId": "@@googleapis+//:repository_rules.bzl%switched_rules", "attributes": { "rules": { "proto_library_with_info": [ @@ -1528,31 +1507,29 @@ "@@platforms//host:extension.bzl%host_platform": { "general": { "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=", - "usagesDigest": "hgylFkgWSg0ulUwWZzEM1aIftlUnbmw2ynWLdEfHnZc=", + "usagesDigest": "SeQiIN/f8/Qt9vYQk7qcXp4I4wJeEC0RnQDiaaJ4tb8=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "host_platform": { - "bzlFile": "@@platforms//host:extension.bzl", - "ruleClassName": "host_platform_repo", + "repoRuleId": "@@platforms//host:extension.bzl%host_platform_repo", "attributes": {} } }, "recordedRepoMappingEntries": [] } }, - "@@rules_buf~//buf:extensions.bzl%ext": { + "@@rules_buf+//buf:extensions.bzl%ext": { "general": { - "bzlTransitiveDigest": "gmPmM7QT5Jez2VVFcwbbMf/QWSRag+nJ1elFJFFTcn0=", - "usagesDigest": "1E3NeLCRI6VyKiersXVtONCbNopc5jIVqoHBOpcWb0A=", + "bzlTransitiveDigest": "3jGepUu1j86kWsTP3Fgogw/XfktHd4UIQt8zj494n/Y=", + "usagesDigest": "RTc2BMQ2b0wGU8CRvN3EoPz34m3LMe+K/oSkFkN83+M=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "rules_buf_toolchains": { - "bzlFile": "@@rules_buf~//buf/internal:toolchain.bzl", - "ruleClassName": "buf_download_releases", + "repoRuleId": "@@rules_buf+//buf/internal:toolchain.bzl%buf_download_releases", "attributes": { "version": "v1.27.0" } @@ -1560,72 +1537,65 @@ }, "recordedRepoMappingEntries": [ [ - "rules_buf~", + "rules_buf+", "bazel_tools", "bazel_tools" ] ] } }, - "@@rules_dotnet~//dotnet:extensions.bzl%dotnet": { + "@@rules_dotnet+//dotnet:extensions.bzl%dotnet": { "general": { "bzlTransitiveDigest": "fJyqX2Qhcc0iPiKt18IkAz6bcj8Myr4CT16rAV+wylM=", - "usagesDigest": "dSS2y31OvcVL37fBkD9nAXDGmAkL0CWiNHc2+j2hhtg=", + "usagesDigest": "8upPljQKBd3m0+u/LGGZYQt5u3OdojXoQQ16h7eKu2Q=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "dotnet_x86_64-apple-darwin": { - "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", - "ruleClassName": "dotnet_repositories", + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", "attributes": { "platform": "x86_64-apple-darwin", "dotnet_version": "8.0.200" } }, "dotnet_aarch64-apple-darwin": { - "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", - "ruleClassName": "dotnet_repositories", + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", "attributes": { "platform": "aarch64-apple-darwin", "dotnet_version": "8.0.200" } }, "dotnet_x86_64-unknown-linux-gnu": { - "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", - "ruleClassName": "dotnet_repositories", + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", "attributes": { "platform": "x86_64-unknown-linux-gnu", "dotnet_version": "8.0.200" } }, "dotnet_arm64-unknown-linux-gnu": { - "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", - "ruleClassName": "dotnet_repositories", + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", "attributes": { "platform": "arm64-unknown-linux-gnu", "dotnet_version": "8.0.200" } }, "dotnet_x86_64-pc-windows-msvc": { - "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", - "ruleClassName": "dotnet_repositories", + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", "attributes": { "platform": "x86_64-pc-windows-msvc", "dotnet_version": "8.0.200" } }, "dotnet_arm64-pc-windows-msvc": { - "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", - "ruleClassName": "dotnet_repositories", + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", "attributes": { "platform": "arm64-pc-windows-msvc", "dotnet_version": "8.0.200" } }, "dotnet_toolchains": { - "bzlFile": "@@rules_dotnet~//dotnet/private:toolchains_repo.bzl", - "ruleClassName": "toolchains_repo", + "repoRuleId": "@@rules_dotnet+//dotnet/private:toolchains_repo.bzl%toolchains_repo", "attributes": { "user_repository_name": "dotnet" } @@ -1634,4041 +1604,5069 @@ "recordedRepoMappingEntries": [] } }, - "@@rules_dotnet~//dotnet/private/sdk/apphost_packs:dotnet.apphost_packs_extension.bzl%apphost_packs_extension": { + "@@rules_foreign_cc+//foreign_cc:extensions.bzl%tools": { "general": { - "bzlTransitiveDigest": "mW+wHEIGP75vak5ZacxLPHQ8CC8VNBjHmL+674TgMjo=", - "usagesDigest": "4NcR6YLXshrDruyuvs1EKJtj0wfPkk4bAKwfbvNRAlI=", + "bzlTransitiveDigest": "FApcIcVN43WOEs7g8eg7Cy1hrfRbVNEoUu8IiF+8WOc=", + "usagesDigest": "9LXdVp01HkdYQT8gYPjYLO6VLVJHo9uFfxWaU1ymiRE=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { - "nuget.microsoft.netcore.app.host.win-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "rules_foreign_cc_framework_toolchain_linux": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-arm64", - "version": "3.1.32", - "sha512": "sha512-DswXqix50wAEPlovKVJ1VbPx+tYwXtwdh6zkpzGkq+Qn27Axs2iNUXdKffBjZsDBjeGavb7AEWYMrBz98a/5uA==" + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:linux" + ] } }, - "nuget.microsoft.netcore.app.host.linux-musl-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "rules_foreign_cc_framework_toolchain_freebsd": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-arm64", - "version": "6.0.28", - "sha512": "sha512-9HGFHhyyj5ITWumA/IQrWR6qwHWR0hYuwyZxXR4ZKBKyQxedDZsFT+D/t1AQwPyeQyx6EmaUl7cd5ySht9H7Rg==" + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:freebsd" + ] } }, - "nuget.microsoft.netcore.app.host.win-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "rules_foreign_cc_framework_toolchain_windows": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-arm64", - "version": "3.0.3", - "sha512": "sha512-h4tRZdiosNe48JJU91uw7WBga3AkT6dOvJSBgqnAaYIXZ1Hbc/z2NZ79D3JsKyXIdcQaqW1k0eI2ticzeqtjMA==" + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:windows" + ] } }, - "nuget.microsoft.netcore.app.host.linux-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "rules_foreign_cc_framework_toolchain_macos": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-x64", - "version": "7.0.17", - "sha512": "sha512-mAoME1kKZLrqJtxdcLY7VZZlRL8CWWsNkk1q4D8zumpuTSuB3/AvEdZ7rlnVUndWIB5SVv+l9mxOu6oIFMn8vw==" + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:macos" + ] } }, - "nuget.microsoft.netcore.app.host.linux-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", - "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-x64", - "version": "8.0.3", - "sha512": "sha512-G4o9Ih9kVUJNoCGDLGGKBOMuKiRDhowuWUnzqFTcy8viZ/ZgvzFGXzEr3P8xRsa3/T0qIZ+5qQCqhe7+dgXa8A==" - } + "rules_foreign_cc_framework_toolchains": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository_hub", + "attributes": {} }, - "nuget.microsoft.netcore.app.host.linux-musl-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-arm64", - "version": "5.0.17", - "sha512": "sha512-H9co6YngYniZfzz8XER87mkQ03h2R1eR8NYKNZL1jEVnFQYHvPRZqN6pEhIhGVx+RiKhKDEGdHORFVZDVhTFbw==" + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa", + "strip_prefix": "cmake-3.23.2", + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz" + ] } }, - "nuget.microsoft.netcore.app.host.osx-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "gnumake_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.osx-arm64", - "version": "6.0.28", - "sha512": "sha512-7jRowpiW573pInKSbWK5jvHSMTFvmRZ7r/l0AiVOCwp2b1EOFtCLrJDcEbs4r/tx2fTBjVjTDQ5aT+niQUhk0w==" + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18", + "strip_prefix": "make-4.4", + "urls": [ + "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz", + "http://ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz" + ] } }, - "nuget.microsoft.netcore.app.host.win-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "ninja_build_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-arm64", - "version": "8.0.3", - "sha512": "sha512-rOwbb11nYQr2OtYbjFw2AwEz1ohRqXEkhVCsIQ/jg/8OL/meNjFFc5bUYe8vRk1F3DOZWCUyqd4wcWcus6hthQ==" + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea", + "strip_prefix": "ninja-1.11.1", + "urls": [ + "https://github.com/ninja-build/ninja/archive/v1.11.1.tar.gz" + ] } }, - "nuget.microsoft.netcore.app.host.linux-musl-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "meson_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-arm64", - "version": "8.0.3", - "sha512": "sha512-fS1jmasVgjGkUTx9z/vLdDOeRAbjWv1Zoib6E8GZZAk3ldCHm4BV9jpQCFisVD5NpCe/+iOo+/9dpojYjEUEdA==" + "build_file_content": "exports_files([\"meson.py\"])\n\nfilegroup(\n name = \"runtime\",\n srcs = glob([\"mesonbuild/**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "strip_prefix": "meson-1.1.1", + "url": "https://github.com/mesonbuild/meson/releases/download/1.1.1/meson-1.1.1.tar.gz" } }, - "nuget.microsoft.netcore.app.host.win-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", - "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-arm64", - "version": "5.0.17", - "sha512": "sha512-ibTt4do4+2H3pShc5cvk/u3SG5zeiXMwi3HvTRNMKfnjd+UIjf4w364tXNoEADHrWokdUOX37k5icLvqCIqqNA==" - } - }, - "nuget.microsoft.netcore.app.host.osx-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", - "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.osx-x64", - "version": "3.0.3", - "sha512": "sha512-eIA7DY8jtGGCw+89OfgbRy05orLvoI4YKNkX3fGioKJRnzjLvg1QcbcfqVTHeXxo1hTP8qJBrNPJi54Tl3V0kw==" - } - }, - "nuget.microsoft.netcore.app.host.osx-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", - "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.osx-arm64", - "version": "7.0.17", - "sha512": "sha512-J3HkImlFu6U6pBNX3yj1dkx29FV9iiHKgV+ePimT/YgwQFfIcxT874EuJxOvhd2uKbsGqgmpj5nBkURnY/gAaw==" - } - }, - "nuget.microsoft.netcore.app.host.win-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", - "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-x64", - "version": "3.1.32", - "sha512": "sha512-p9nogZAnicSfXmfpDCBlNJbszywmLhbV6/IbcK4qB4gb+9AF46OOnSVzMc2BVZmPsLfkQtSFVlG/chdttCqD9A==" - } - }, - "nuget.microsoft.netcore.app.host.linux-musl-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", - "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-arm64", - "version": "7.0.17", - "sha512": "sha512-FRDb8epYZ6sAfMf4NUhvDO/0IJelu8IvjR1w9DTaKYanaY2HLksMiXUDhNyjkTM45wHfePWu20+N9oqb7YBSjQ==" - } - }, - "dotnet.apphost_packs": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_repo.bzl", - "ruleClassName": "_nuget_repo", + "glib_dev": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "repo_name": "dotnet.apphost_packs", - "packages": [ - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v3.0.3\",\"sha512\":\"sha512-GUhjsX3RrvzfRmGH7ol6VvVOVc8DQagZgolXuBNR0W9H/w3fGeCK32ZxZjQ1HS1qzZ1tloQPRjz1ba1MPqlkDA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v3.0.3\",\"sha512\":\"sha512-6T+r7FjmaJOcWw8dIs0pi3KNo3sU/Ggk25rhsY5SYLS6dtap1k0fVkJHeZxXeXGckunScQ/XgKAYDPQ1iETXvg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-Fymy5EH69k06lZLcAzuvskwmmcyeZZmQwRrh0R13kAgPy1cH9rVfy77b1IDzkXxKNO7B4ANHdC80sfAiT8Wlmg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-rwJyEcl3wwxCI0hyIOw7tHsCfA5v2NpZVa3GZSFa7/nJmtyZlTfWyuYAXxdnFzxSwU2DNYL3kYy59/4+9EF4hA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v3.0.3\",\"sha512\":\"sha512-eIA7DY8jtGGCw+89OfgbRy05orLvoI4YKNkX3fGioKJRnzjLvg1QcbcfqVTHeXxo1hTP8qJBrNPJi54Tl3V0kw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v3.0.3\",\"sha512\":\"sha512-5U3jATWwbKMwTseDUE9zqDgbTwVkARyuEd6kk9eJ2RQWCQUhc4xweDWaOQ+gjO1RfEiSFhN0ZI4LSvZJWX2cow==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v3.0.3\",\"sha512\":\"sha512-h4tRZdiosNe48JJU91uw7WBga3AkT6dOvJSBgqnAaYIXZ1Hbc/z2NZ79D3JsKyXIdcQaqW1k0eI2ticzeqtjMA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v3.1.32\",\"sha512\":\"sha512-4eu4PWwNn8v1ddv6+fAZZ3DVazO/uAtfRalMVQWBVzilB0LZZoJ9PLuMiSyHn0AY+ARCqHJofWSHxSiWfC1yyw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v3.1.32\",\"sha512\":\"sha512-kH1+TFUJTQOoUBrEFwHYNryf28OO4JF3xcOTbUN/8WGS3NW29oCqyR88RYKEOly7QThmGua/PNd8IpjC10vRaA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-uglFvmuXerWDbNZuwx7ZJvvblKrMgMYcCr6r+un62yfkhx4OjjyuaAdFjSo40qpalR5QUMlqM+5xBERcw4+GOQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-8MAEJqAVpNSU/w0qKZFHvdweNdcIht3g0Of3gTEVqyR0R2ovNHCenSSfo5kAS8hfVZ1oxiEdTNdHrKmwq3vvRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v3.1.32\",\"sha512\":\"sha512-vV19A5M60cxvdRM3ZabhPjI6lz2svjXtbyD3n0lRz0FzxvztP4Vvf0nH1FXzwDVm/ydNL7UN3tlj62XjdNfKjQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v3.1.32\",\"sha512\":\"sha512-p9nogZAnicSfXmfpDCBlNJbszywmLhbV6/IbcK4qB4gb+9AF46OOnSVzMc2BVZmPsLfkQtSFVlG/chdttCqD9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v3.1.32\",\"sha512\":\"sha512-DswXqix50wAEPlovKVJ1VbPx+tYwXtwdh6zkpzGkq+Qn27Axs2iNUXdKffBjZsDBjeGavb7AEWYMrBz98a/5uA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v5.0.17\",\"sha512\":\"sha512-3x4x8sACczUaRusJAfZ8uG+lGxDSeeqb0d6PekygzgT44lQhaXKKof8yji3X4xH1JqHnprv1faChuZkD54OYNg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v5.0.17\",\"sha512\":\"sha512-/ytwOp85R5T/NTSmBL51+GlytssrC2Ov7CgZPJIWj/9u8pPI6unO1UZ219MrDZttGUWP1pHm7kJ7XaKbifjHlg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-LY6e3dnNfEkk7mrDOxx0JY63sioI2xskstHwC1O2StNJ6QjVWE5i3xDPJl6s1DidACTvZvm16XDPqnR/cITNLg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-H9co6YngYniZfzz8XER87mkQ03h2R1eR8NYKNZL1jEVnFQYHvPRZqN6pEhIhGVx+RiKhKDEGdHORFVZDVhTFbw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v5.0.17\",\"sha512\":\"sha512-cW3IvuCZC4ULbzsA4A3FznaUTFNXOJNCUDfFn9eN/t6tjJZe70tI4WAc51GApa3wC/B7Sy/S7yRsH+m5fDnjzA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v5.0.17\",\"sha512\":\"sha512-GjnT+8oke0YvrrbD2VlIcBmJ8HyqB0/zOpnNJ+f0dc0RzAQ/lSxCC7avT0Ly86as+zK5vU9TatXP++5VqspCZQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v5.0.17\",\"sha512\":\"sha512-ibTt4do4+2H3pShc5cvk/u3SG5zeiXMwi3HvTRNMKfnjd+UIjf4w364tXNoEADHrWokdUOX37k5icLvqCIqqNA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v6.0.28\",\"sha512\":\"sha512-TbFlTZBow3//Xi/x17srAg5mGjlWw2uUPxrjSGuryPhRXgtv52soisZ8C9BZYLTb6O7UeDiQlLXPSo8M0SJ0EA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v6.0.28\",\"sha512\":\"sha512-Y6jWqYf7+OByPyXoC1EtR47jM7BHzaWi+hXIWqYOwVKKmk7Xg76RtTUBogadB7lXTQRefIfyjrdpyb5RscXeRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v6.0.28\",\"sha512\":\"sha512-gbG9jNbLRQxiRJqLquC6ENWnpx9KpSjCiz4r3RDRoFwt0h1h7lmjeY86A3siA8zSZD9/ZWxnJhJ68Sr2bQhwow==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v6.0.28\",\"sha512\":\"sha512-9HGFHhyyj5ITWumA/IQrWR6qwHWR0hYuwyZxXR4ZKBKyQxedDZsFT+D/t1AQwPyeQyx6EmaUl7cd5ySht9H7Rg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v6.0.28\",\"sha512\":\"sha512-MEJB5al4h6eMrjyOT0sx7AiLYFqPf2x1DFnmcLpHQCRf45ZRE/HWjMc3le681Ygvt9F5QX7oGQKRH9Z3D3ckWw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v6.0.28\",\"sha512\":\"sha512-7jRowpiW573pInKSbWK5jvHSMTFvmRZ7r/l0AiVOCwp2b1EOFtCLrJDcEbs4r/tx2fTBjVjTDQ5aT+niQUhk0w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v6.0.28\",\"sha512\":\"sha512-tA94VL7eb4h4MOHy2rthhnPYUV9Dtnw2VeP5xFRxA8Rpsi5fDhR/79Q5P+RuF2Jml9fwoNKaMQ6jxQWaIgf+wQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v6.0.28\",\"sha512\":\"sha512-ny06bI55JoGI1SEyYXPjwgRqEPiPlvcz1nGZETwtjadwGg4XlD8nYwtqak2zLSQBKO+BMZ3CtkSEOyP65sHj0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v7.0.17\",\"sha512\":\"sha512-mAoME1kKZLrqJtxdcLY7VZZlRL8CWWsNkk1q4D8zumpuTSuB3/AvEdZ7rlnVUndWIB5SVv+l9mxOu6oIFMn8vw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v7.0.17\",\"sha512\":\"sha512-IgVZHEcjg8TL73xcNdj1qM7vmhwNzF4EZgOsQd7ruQX7NciUF7rseBmxS9bZYlthF73KAK1VnPAK2PRgnFqalA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v7.0.17\",\"sha512\":\"sha512-hG4CNgp5fZj9nmx2P7ZIYIjYxJFWcKQo2uQ6tkL/IazkrYwGvBjF52bU5WCZIwfk/MIwoiKVKWh4MihNOCI/yQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v7.0.17\",\"sha512\":\"sha512-FRDb8epYZ6sAfMf4NUhvDO/0IJelu8IvjR1w9DTaKYanaY2HLksMiXUDhNyjkTM45wHfePWu20+N9oqb7YBSjQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v7.0.17\",\"sha512\":\"sha512-ZKN9JsqzPCbF1r0F6Um2gvaBbEgaErQQ5yUYAscKadXylogCPnO3eTRb69z5bxLQdnru+NGMJ1fhd5+MDcRD1Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v7.0.17\",\"sha512\":\"sha512-J3HkImlFu6U6pBNX3yj1dkx29FV9iiHKgV+ePimT/YgwQFfIcxT874EuJxOvhd2uKbsGqgmpj5nBkURnY/gAaw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v7.0.17\",\"sha512\":\"sha512-Ns23KKE07LfqfzghWyd+DGTY/zf5EB9qj3cluFOuNWJ8d15Uffh89uKS4K/p940Wzpql4d2Bvu7mbP5L9V9JAQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v7.0.17\",\"sha512\":\"sha512-Wmf0oefdvcV+HESw8GlGrF2z511NER0ckIkuT4uZ861ZDefAoxmfJv2w6TVowAV1CAYOH60mt8yN/xqRUwm3pA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v8.0.3\",\"sha512\":\"sha512-G4o9Ih9kVUJNoCGDLGGKBOMuKiRDhowuWUnzqFTcy8viZ/ZgvzFGXzEr3P8xRsa3/T0qIZ+5qQCqhe7+dgXa8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v8.0.3\",\"sha512\":\"sha512-gKz5NE5xo9pruoe1K2pRmtCxTV3j1X6nhRfNmYMPk25uZJJMlXhjE4HuZez08p4T04z/XGuWQu8PSFOIVXUUgw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v8.0.3\",\"sha512\":\"sha512-ychlRX0pN0rrnJ2svau28Mho1fa4oVcK86M45tF432llzB0GItVdnsH12tp0iCI+y3Id2LoYroTQPuW0pdlO8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v8.0.3\",\"sha512\":\"sha512-fS1jmasVgjGkUTx9z/vLdDOeRAbjWv1Zoib6E8GZZAk3ldCHm4BV9jpQCFisVD5NpCe/+iOo+/9dpojYjEUEdA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v8.0.3\",\"sha512\":\"sha512-LrfJ8JM8zsqK1XeJ6oRzAeiek1n0y7I5J6xKdcaWTW1sMtm71ynoP5TB4uJpPl5meRhDstiSiyK2HfQJuxr2QA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v8.0.3\",\"sha512\":\"sha512-zqw7Ggssv8tHA8tB1XR0CzpYpRqzSIEA9dRaFKHDzBFZI17T0uLdCKnLqII8AtOVVQ0HEht6ZOR5DaQUtQ+pvQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v8.0.3\",\"sha512\":\"sha512-g2vmpZ7HTbKdtXgQch/puL9wTtiSgcbxYR09EofwkRmdVhY6KTNV6emxmUlj60YC8YsJyGhfAGxP0R+e+0oxVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v8.0.3\",\"sha512\":\"sha512-rOwbb11nYQr2OtYbjFw2AwEz1ohRqXEkhVCsIQ/jg/8OL/meNjFFc5bUYe8vRk1F3DOZWCUyqd4wcWcus6hthQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}" - ], - "targeting_pack_overrides": { - "microsoft.netcore.app.host.linux-x64": [], - "microsoft.netcore.app.host.linux-arm64": [], - "microsoft.netcore.app.host.linux-musl-x64": [], - "microsoft.netcore.app.host.linux-musl-arm64": [], - "microsoft.netcore.app.host.osx-x64": [], - "microsoft.netcore.app.host.win-x64": [], - "microsoft.netcore.app.host.win-arm64": [], - "microsoft.netcore.app.host.osx-arm64": [] - }, - "framework_list": { - "microsoft.netcore.app.host.linux-x64": [], - "microsoft.netcore.app.host.linux-arm64": [], - "microsoft.netcore.app.host.linux-musl-x64": [], - "microsoft.netcore.app.host.linux-musl-arm64": [], - "microsoft.netcore.app.host.osx-x64": [], - "microsoft.netcore.app.host.win-x64": [], - "microsoft.netcore.app.host.win-arm64": [], - "microsoft.netcore.app.host.osx-arm64": [] - } + "build_file_content": "\nload(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\n\ncc_import(\n name = \"glib_dev\",\n hdrs = glob([\"include/**\"]),\n shared_library = \"@glib_runtime//:bin/libglib-2.0-0.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "bdf18506df304d38be98a4b3f18055b8b8cca81beabecad0eece6ce95319c369", + "urls": [ + "https://download.gnome.org/binaries/win64/glib/2.26/glib-dev_2.26.1-1_win64.zip" + ] } }, - "nuget.microsoft.netcore.app.host.osx-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "glib_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.osx-arm64", - "version": "8.0.3", - "sha512": "sha512-zqw7Ggssv8tHA8tB1XR0CzpYpRqzSIEA9dRaFKHDzBFZI17T0uLdCKnLqII8AtOVVQ0HEht6ZOR5DaQUtQ+pvQ==" + "build_file_content": "\ncc_import(\n name = \"msvc_hdr\",\n hdrs = [\"msvc_recommended_pragmas.h\"],\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "bc96f63112823b7d6c9f06572d2ad626ddac7eb452c04d762592197f6e07898e", + "strip_prefix": "glib-2.26.1", + "urls": [ + "https://download.gnome.org/sources/glib/2.26/glib-2.26.1.tar.gz" + ] } }, - "nuget.microsoft.netcore.app.host.linux-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "glib_runtime": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-arm64", - "version": "8.0.3", - "sha512": "sha512-gKz5NE5xo9pruoe1K2pRmtCxTV3j1X6nhRfNmYMPk25uZJJMlXhjE4HuZez08p4T04z/XGuWQu8PSFOIVXUUgw==" + "build_file_content": "\nexports_files(\n [\n \"bin/libgio-2.0-0.dll\",\n \"bin/libglib-2.0-0.dll\",\n \"bin/libgmodule-2.0-0.dll\",\n \"bin/libgobject-2.0-0.dll\",\n \"bin/libgthread-2.0-0.dll\",\n ],\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "88d857087e86f16a9be651ee7021880b3f7ba050d34a1ed9f06113b8799cb973", + "urls": [ + "https://download.gnome.org/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip" + ] } }, - "nuget.microsoft.netcore.app.host.linux-musl-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "gettext_runtime": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-arm64", - "version": "3.1.32", - "sha512": "sha512-8MAEJqAVpNSU/w0qKZFHvdweNdcIht3g0Of3gTEVqyR0R2ovNHCenSSfo5kAS8hfVZ1oxiEdTNdHrKmwq3vvRA==" + "build_file_content": "\ncc_import(\n name = \"gettext_runtime\",\n shared_library = \"bin/libintl-8.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "1f4269c0e021076d60a54e98da6f978a3195013f6de21674ba0edbc339c5b079", + "urls": [ + "https://download.gnome.org/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip" + ] } }, - "nuget.microsoft.netcore.app.host.win-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "pkgconfig_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591", + "strip_prefix": "pkg-config-0.29.2", + "patches": [ + "@@rules_foreign_cc+//toolchains:pkgconfig-detectenv.patch", + "@@rules_foreign_cc+//toolchains:pkgconfig-makefile-vc.patch" ], - "id": "microsoft.netcore.app.host.win-x64", - "version": "7.0.17", - "sha512": "sha512-Ns23KKE07LfqfzghWyd+DGTY/zf5EB9qj3cluFOuNWJ8d15Uffh89uKS4K/p940Wzpql4d2Bvu7mbP5L9V9JAQ==" + "urls": [ + "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz" + ] } }, - "nuget.microsoft.netcore.app.host.linux-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "bazel_skylib": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz" ], - "id": "microsoft.netcore.app.host.linux-arm64", - "version": "5.0.17", - "sha512": "sha512-/ytwOp85R5T/NTSmBL51+GlytssrC2Ov7CgZPJIWj/9u8pPI6unO1UZ219MrDZttGUWP1pHm7kJ7XaKbifjHlg==" + "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728" } }, - "nuget.microsoft.netcore.app.host.osx-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "rules_python": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.osx-x64", - "version": "3.1.32", - "sha512": "sha512-vV19A5M60cxvdRM3ZabhPjI6lz2svjXtbyD3n0lRz0FzxvztP4Vvf0nH1FXzwDVm/ydNL7UN3tlj62XjdNfKjQ==" + "sha256": "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", + "strip_prefix": "rules_python-0.23.1", + "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.23.1.tar.gz" } }, - "nuget.microsoft.netcore.app.host.linux-musl-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake-3.23.2-linux-aarch64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz" ], - "id": "microsoft.netcore.app.host.linux-musl-x64", - "version": "6.0.28", - "sha512": "sha512-gbG9jNbLRQxiRJqLquC6ENWnpx9KpSjCiz4r3RDRoFwt0h1h7lmjeY86A3siA8zSZD9/ZWxnJhJ68Sr2bQhwow==" + "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e", + "strip_prefix": "cmake-3.23.2-linux-aarch64", + "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" } }, - "nuget.microsoft.netcore.app.host.linux-musl-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake-3.23.2-linux-x86_64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz" ], - "id": "microsoft.netcore.app.host.linux-musl-x64", - "version": "3.1.32", - "sha512": "sha512-uglFvmuXerWDbNZuwx7ZJvvblKrMgMYcCr6r+un62yfkhx4OjjyuaAdFjSo40qpalR5QUMlqM+5xBERcw4+GOQ==" + "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708", + "strip_prefix": "cmake-3.23.2-linux-x86_64", + "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" } }, - "nuget.microsoft.netcore.app.host.osx-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake-3.23.2-macos-universal": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz" ], - "id": "microsoft.netcore.app.host.osx-x64", - "version": "5.0.17", - "sha512": "sha512-cW3IvuCZC4ULbzsA4A3FznaUTFNXOJNCUDfFn9eN/t6tjJZe70tI4WAc51GApa3wC/B7Sy/S7yRsH+m5fDnjzA==" + "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88", + "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents", + "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" } }, - "nuget.microsoft.netcore.app.host.linux-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake-3.23.2-windows-i386": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip" ], - "id": "microsoft.netcore.app.host.linux-arm64", - "version": "3.0.3", - "sha512": "sha512-6T+r7FjmaJOcWw8dIs0pi3KNo3sU/Ggk25rhsY5SYLS6dtap1k0fVkJHeZxXeXGckunScQ/XgKAYDPQ1iETXvg==" + "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07", + "strip_prefix": "cmake-3.23.2-windows-i386", + "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" } }, - "nuget.microsoft.netcore.app.host.win-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake-3.23.2-windows-x86_64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip" ], - "id": "microsoft.netcore.app.host.win-x64", - "version": "6.0.28", - "sha512": "sha512-tA94VL7eb4h4MOHy2rthhnPYUV9Dtnw2VeP5xFRxA8Rpsi5fDhR/79Q5P+RuF2Jml9fwoNKaMQ6jxQWaIgf+wQ==" + "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0", + "strip_prefix": "cmake-3.23.2-windows-x86_64", + "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" } }, - "nuget.microsoft.netcore.app.host.linux-musl-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "cmake_3.23.2_toolchains": { + "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-x64", - "version": "5.0.17", - "sha512": "sha512-LY6e3dnNfEkk7mrDOxx0JY63sioI2xskstHwC1O2StNJ6QjVWE5i3xDPJl6s1DidACTvZvm16XDPqnR/cITNLg==" + "repos": { + "cmake-3.23.2-linux-aarch64": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "cmake-3.23.2-linux-x86_64": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "cmake-3.23.2-macos-universal": [ + "@platforms//os:macos" + ], + "cmake-3.23.2-windows-i386": [ + "@platforms//cpu:x86_32", + "@platforms//os:windows" + ], + "cmake-3.23.2-windows-x86_64": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ] + }, + "tool": "cmake" } }, - "nuget.microsoft.netcore.app.host.win-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "ninja_1.11.1_linux": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip" ], - "id": "microsoft.netcore.app.host.win-x64", - "version": "8.0.3", - "sha512": "sha512-g2vmpZ7HTbKdtXgQch/puL9wTtiSgcbxYR09EofwkRmdVhY6KTNV6emxmUlj60YC8YsJyGhfAGxP0R+e+0oxVA==" + "sha256": "b901ba96e486dce377f9a070ed4ef3f79deb45f4ffe2938f8e7ddc69cfb3df77", + "strip_prefix": "", + "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" } }, - "nuget.microsoft.netcore.app.host.linux-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "ninja_1.11.1_mac": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-mac.zip" ], - "id": "microsoft.netcore.app.host.linux-arm64", - "version": "6.0.28", - "sha512": "sha512-Y6jWqYf7+OByPyXoC1EtR47jM7BHzaWi+hXIWqYOwVKKmk7Xg76RtTUBogadB7lXTQRefIfyjrdpyb5RscXeRA==" + "sha256": "482ecb23c59ae3d4f158029112de172dd96bb0e97549c4b1ca32d8fad11f873e", + "strip_prefix": "", + "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" } }, - "nuget.microsoft.netcore.app.host.osx-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "ninja_1.11.1_win": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip" ], - "id": "microsoft.netcore.app.host.osx-x64", - "version": "6.0.28", - "sha512": "sha512-MEJB5al4h6eMrjyOT0sx7AiLYFqPf2x1DFnmcLpHQCRf45ZRE/HWjMc3le681Ygvt9F5QX7oGQKRH9Z3D3ckWw==" + "sha256": "524b344a1a9a55005eaf868d991e090ab8ce07fa109f1820d40e74642e289abc", + "strip_prefix": "", + "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" } }, - "nuget.microsoft.netcore.app.host.linux-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "ninja_1.11.1_toolchains": { + "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-arm64", - "version": "3.1.32", - "sha512": "sha512-kH1+TFUJTQOoUBrEFwHYNryf28OO4JF3xcOTbUN/8WGS3NW29oCqyR88RYKEOly7QThmGua/PNd8IpjC10vRaA==" + "repos": { + "ninja_1.11.1_linux": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "ninja_1.11.1_mac": [ + "@platforms//cpu:x86_64", + "@platforms//os:macos" + ], + "ninja_1.11.1_win": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ] + }, + "tool": "ninja" } - }, - "nuget.microsoft.netcore.app.host.linux-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_foreign_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_foreign_cc+", + "rules_foreign_cc", + "rules_foreign_cc+" + ] + ] + } + }, + "@@rules_kotlin+//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { + "general": { + "bzlTransitiveDigest": "sFhcgPbDQehmbD1EOXzX4H1q/CD5df8zwG4kp4jbvr8=", + "usagesDigest": "QI2z8ZUR+mqtbwsf2fLqYdJAkPOHdOV+tF2yVAUgRzw=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_jetbrains_kotlin_git": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_compiler_git_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip" ], - "id": "microsoft.netcore.app.host.linux-x64", - "version": "5.0.17", - "sha512": "sha512-3x4x8sACczUaRusJAfZ8uG+lGxDSeeqb0d6PekygzgT44lQhaXKKof8yji3X4xH1JqHnprv1faChuZkD54OYNg==" + "sha256": "93137d3aab9afa9b27cb06a824c2324195c6b6f6179d8a8653f440f5bd58be88" } }, - "nuget.microsoft.netcore.app.host.linux-musl-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "com_github_jetbrains_kotlin": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_capabilities_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-x64", - "version": "7.0.17", - "sha512": "sha512-hG4CNgp5fZj9nmx2P7ZIYIjYxJFWcKQo2uQ6tkL/IazkrYwGvBjF52bU5WCZIwfk/MIwoiKVKWh4MihNOCI/yQ==" + "git_repository_name": "com_github_jetbrains_kotlin_git", + "compiler_version": "1.9.23" } }, - "nuget.microsoft.netcore.app.host.win-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "com_github_google_ksp": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:ksp.bzl%ksp_compiler_plugin_repository", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "urls": [ + "https://github.com/google/ksp/releases/download/1.9.23-1.0.20/artifacts.zip" ], - "id": "microsoft.netcore.app.host.win-x64", - "version": "5.0.17", - "sha512": "sha512-GjnT+8oke0YvrrbD2VlIcBmJ8HyqB0/zOpnNJ+f0dc0RzAQ/lSxCC7avT0Ly86as+zK5vU9TatXP++5VqspCZQ==" + "sha256": "ee0618755913ef7fd6511288a232e8fad24838b9af6ea73972a76e81053c8c2d", + "strip_version": "1.9.23-1.0.20" } }, - "nuget.microsoft.netcore.app.host.osx-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "com_github_pinterest_ktlint": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" + "sha256": "01b2e0ef893383a50dbeb13970fe7fa3be36ca3e83259e01649945b09d736985", + "urls": [ + "https://github.com/pinterest/ktlint/releases/download/1.3.0/ktlint" ], - "id": "microsoft.netcore.app.host.osx-x64", - "version": "8.0.3", - "sha512": "sha512-LrfJ8JM8zsqK1XeJ6oRzAeiek1n0y7I5J6xKdcaWTW1sMtm71ynoP5TB4uJpPl5meRhDstiSiyK2HfQJuxr2QA==" + "executable": true } }, - "nuget.microsoft.netcore.app.host.osx-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "rules_android": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.osx-x64", - "version": "7.0.17", - "sha512": "sha512-ZKN9JsqzPCbF1r0F6Um2gvaBbEgaErQQ5yUYAscKadXylogCPnO3eTRb69z5bxLQdnru+NGMJ1fhd5+MDcRD1Q==" + "sha256": "cd06d15dd8bb59926e4d65f9003bfc20f9da4b2519985c27e190cddc8b7a7806", + "strip_prefix": "rules_android-0.1.1", + "urls": [ + "https://github.com/bazelbuild/rules_android/archive/v0.1.1.zip" + ] } - }, - "nuget.microsoft.netcore.app.host.linux-musl-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_kotlin+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_nodejs+//nodejs:extensions.bzl%node": { + "general": { + "bzlTransitiveDigest": "btnelILPo3ngQN9vWtsQMclvJZPf3X2vcGTjmW7Owy8=", + "usagesDigest": "CtwJeycIo1YVyKAUrO/7bkpB6yqctQd8XUnRtqUbwRI=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nodejs_linux_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-x64", - "version": "8.0.3", - "sha512": "sha512-ychlRX0pN0rrnJ2svau28Mho1fa4oVcK86M45tF432llzB0GItVdnsH12tp0iCI+y3Id2LoYroTQPuW0pdlO8A==" + "platform": "linux_amd64", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.linux-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_linux_arm64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-x64", - "version": "6.0.28", - "sha512": "sha512-TbFlTZBow3//Xi/x17srAg5mGjlWw2uUPxrjSGuryPhRXgtv52soisZ8C9BZYLTb6O7UeDiQlLXPSo8M0SJ0EA==" + "platform": "linux_arm64", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.linux-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_linux_s390x": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-arm64", - "version": "7.0.17", - "sha512": "sha512-IgVZHEcjg8TL73xcNdj1qM7vmhwNzF4EZgOsQd7ruQX7NciUF7rseBmxS9bZYlthF73KAK1VnPAK2PRgnFqalA==" + "platform": "linux_s390x", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.win-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_linux_ppc64le": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-arm64", - "version": "7.0.17", - "sha512": "sha512-Wmf0oefdvcV+HESw8GlGrF2z511NER0ckIkuT4uZ861ZDefAoxmfJv2w6TVowAV1CAYOH60mt8yN/xqRUwm3pA==" + "platform": "linux_ppc64le", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.linux-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_darwin_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-x64", - "version": "3.0.3", - "sha512": "sha512-GUhjsX3RrvzfRmGH7ol6VvVOVc8DQagZgolXuBNR0W9H/w3fGeCK32ZxZjQ1HS1qzZ1tloQPRjz1ba1MPqlkDA==" + "platform": "darwin_amd64", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.win-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_darwin_arm64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-arm64", - "version": "6.0.28", - "sha512": "sha512-ny06bI55JoGI1SEyYXPjwgRqEPiPlvcz1nGZETwtjadwGg4XlD8nYwtqak2zLSQBKO+BMZ3CtkSEOyP65sHj0A==" + "platform": "darwin_arm64", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.linux-musl-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_windows_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-arm64", - "version": "3.0.3", - "sha512": "sha512-rwJyEcl3wwxCI0hyIOw7tHsCfA5v2NpZVa3GZSFa7/nJmtyZlTfWyuYAXxdnFzxSwU2DNYL3kYy59/4+9EF4hA==" + "platform": "windows_amd64", + "node_version": "16.19.0" } }, - "nuget.microsoft.netcore.app.host.win-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.win-x64", - "version": "3.0.3", - "sha512": "sha512-5U3jATWwbKMwTseDUE9zqDgbTwVkARyuEd6kk9eJ2RQWCQUhc4xweDWaOQ+gjO1RfEiSFhN0ZI4LSvZJWX2cow==" + "user_node_repository_name": "nodejs" } }, - "nuget.microsoft.netcore.app.host.linux-musl-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_host": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-musl-x64", - "version": "3.0.3", - "sha512": "sha512-Fymy5EH69k06lZLcAzuvskwmmcyeZZmQwRrh0R13kAgPy1cH9rVfy77b1IDzkXxKNO7B4ANHdC80sfAiT8Wlmg==" + "user_node_repository_name": "nodejs" } }, - "nuget.microsoft.netcore.app.host.linux-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nodejs_toolchains": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:toolchains_repo.bzl%toolchains_repo", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.host.linux-x64", - "version": "3.1.32", - "sha512": "sha512-4eu4PWwNn8v1ddv6+fAZZ3DVazO/uAtfRalMVQWBVzilB0LZZoJ9PLuMiSyHn0AY+ARCqHJofWSHxSiWfC1yyw==" + "user_node_repository_name": "nodejs" } } }, "recordedRepoMappingEntries": [ [ - "local_config_platform", - "platforms", - "platforms" + "rules_nodejs+", + "bazel_skylib", + "bazel_skylib+" ], [ - "platforms", - "host_platform", - "platforms~host_platform~host_platform" - ], - [ - "rules_dotnet~", - "bazel_skylib", - "bazel_skylib~" - ], - [ - "rules_dotnet~", + "rules_nodejs+", "bazel_tools", "bazel_tools" - ], - [ - "rules_dotnet~", - "local_config_platform", - "local_config_platform" - ], - [ - "rules_dotnet~", - "rules_dotnet", - "rules_dotnet~" ] ] } }, - "@@rules_dotnet~//dotnet/private/sdk/runtime_packs:dotnet.runtime_packs_extension.bzl%runtime_packs_extension": { + "@@rules_python+//python/extensions:pip.bzl%pip": { "general": { - "bzlTransitiveDigest": "HvMvGUtfGplSonj39m0W6FXD3yC/FcxzEt05OV0+azM=", - "usagesDigest": "INk1k3SyC0AEUOlhHTOTAfutofOjJt1SLUuIpe9uin8=", - "recordedFileInputs": {}, + "bzlTransitiveDigest": "b7yaNpUGZLn3mZOzyxDku8HdKEnDUccWr4puwv3QxJs=", + "usagesDigest": "B0zga5j6jt6wT/fYUaf1qstVH+UsFLxtWkDhrFgTMcw=", + "recordedFileInputs": { + "@@//python/requirements_lock.txt": "bad677d9662455c9e4bb524334302f07b70b850c99cfb271aede4b7cd1b95cab", + "@@grpc+//requirements.bazel.txt": "4c8c19a2a8f22108bf29feb5cc2694eb0c7e0c82ba0364df27fe5f5e4d7936e5", + "@@protobuf+//python/requirements.txt": "983be60d3cec4b319dcab6d48aeb3f5b2f7c3350f26b3a9e97486c37967c73c5", + "@@rules_fuzzing+//fuzzing/requirements.txt": "ab04664be026b632a0d2a2446c4f65982b7654f5b6851d2f9d399a19b7242a5b", + "@@rules_python+//tools/publish/requirements_darwin.txt": "2994136eab7e57b083c3de76faf46f70fad130bc8e7360a7fed2b288b69e79dc", + "@@rules_python+//tools/publish/requirements_linux.txt": "8175b4c8df50ae2f22d1706961884beeb54e7da27bd2447018314a175981997d", + "@@rules_python+//tools/publish/requirements_windows.txt": "7673adc71dc1a81d3661b90924d7a7c0fc998cd508b3cb4174337cef3f2de556" + }, "recordedDirentsInputs": {}, - "envVariables": {}, + "envVariables": { + "RULES_PYTHON_REPO_DEBUG": null, + "RULES_PYTHON_REPO_DEBUG_VERBOSITY": null + }, "generatedRepoSpecs": { - "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-arm64", - "version": "6.0.28", - "sha512": "sha512-9PnNEXr70E8jMVgUId380xfB0r6V150SmXmJ8fy+yDjtplGOKPDqcLUtDMAhLK/3ue1EIXaC18jpUPGjTSDXRA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "absl-py==1.4.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_cachetools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-x64", - "version": "5.0.17", - "sha512": "sha512-jIZjwj5feyF7p95M0hosArKnBMajc2Zy86UIg6YUcR0mJkcbPpbS+ReLn8hY6Hkml4uJcQZs9ssQOPyJ97AN8w==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "cachetools==5.3.2" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_certifi": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-arm64", - "version": "6.0.28", - "sha512": "sha512-d7aCegi8yRJXbTaYhM75z3RIkji5Ld9qDi4MmCffxFjpEddmbQfib42gpBrGY1bdc/G6bhoRcHpM6pOnE0GY+g==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "certifi==2023.7.22" } }, - "nuget.microsoft.netcore.app.runtime.win-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_chardet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-x64", - "version": "7.0.17", - "sha512": "sha512-vKOq7wBnk8MYFUD0mWGo8nNCy6U4l0w+vFuygO1Z5SATUyg77vp8QwVwDIIT1iXVQgRZRRKdCZHaLkjmLGiWSQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "chardet==3.0.4" } }, - "nuget.microsoft.netcore.app.runtime.osx-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_charset_normalizer": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-x64", - "version": "6.0.28", - "sha512": "sha512-yhk89RxfqaPoWEtK/5nEwZKRJsaDQ8hfAfYPOm0c1Rt5L9g3u/Hw1QywDupreJbRXG51WVtjGY1YnjazsUuWWQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "charset-normalizer==3.3.2" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_coverage": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-arm64", - "version": "3.1.32", - "sha512": "sha512-ME5y8L40XafMwpsTay6peXu4CtvWU+5onUnItr6YzPRJPJYvcd9h1pvBGeBbjuv7IV1Zt07zcuLBE+S40HlRXQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "coverage==4.5.4" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_cython": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-arm64", - "version": "5.0.17", - "sha512": "sha512-us+amSBsQ885nIi2ApDzrDeBJKvvDCKSsGuF3wA7hxA9oFqpxpfijXpWARxTb3gzSOqjG6v/GjvOesWtTZTRWQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "cython==3.0.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_deprecated": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-arm64", - "version": "6.0.28", - "sha512": "sha512-x/m0RKyS4uO1BHd8w21v8FpdVousVgV6YVEZkAPalFH0BCf77CZVArSuYF3rxyINonVC9/D9gHRugHc9Rx4cLw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "Deprecated==1.2.14" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_gevent": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", - "version": "5.0.17", - "sha512": "sha512-ZQsaMSvv1ygkbU1O5Ns4wlwu4BSGG/5fVSn82wozqCyEISmDNCQyh33iQgadLNefEQWhHUsdcFYb3OAYdfFSoQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "gevent==22.08.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_google_api_core": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-x64", - "version": "6.0.28", - "sha512": "sha512-V29vC0FK0zHMF/JnOws/GB/JdN+V/S1Lw000H1Qk3gHNuRcv8OQF7si3N8mu91RfyM1QmVh5SE6VfgBy/s1Xng==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "google-api-core==1.34.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_google_auth": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-arm64", - "version": "5.0.17", - "sha512": "sha512-qOm4eEGPVMVd+z+CGo2C5l2Qss7hoWREpLILBhbAzS0B3Lb1pMyX7prz9R0l6WUuyeKoKRff2hIWfI69vsURhg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "google-auth==2.23.4" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_google_cloud_monitoring": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-x64", - "version": "3.0.3", - "sha512": "sha512-Y/So/PcccsoBY9QQuDIJLQamNKgBELmGWpZmdIyoXP80+TUqddM7r+BW51HZYheOmoKTh4YBECK7TUNVXCJZiA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "google-cloud-monitoring==2.16.0" } }, - "nuget.microsoft.netcore.app.runtime.win-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_google_cloud_trace": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-x64", - "version": "3.1.32", - "sha512": "sha512-cVOGmQYfQoQbls4z3fT1otCY08PvQwSJj3Ur+zwcJwd6Ejq0aRIkiiZZUQNxB/P6W+pfRTA5xi01u5lZzMvcKw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "google-cloud-trace==1.11.3" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_googleapis_common_protos": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-x64", - "version": "6.0.28", - "sha512": "sha512-damWlGv579s0bNotQ+Xcy+XZfDvZX9L7PJDTjd2nuRcS6ckIPwLWWkCmkaWFf5ndrjN2LrCxZ9ezZEtPBP2zOw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "googleapis-common-protos==1.63.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_greenlet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-x64", - "version": "6.0.28", - "sha512": "sha512-ZIXD7z1791YsZvhLD7BwdVe2OHIok7ajUY3/iT4pcIxLyk40WEXmGTqszPLz02BXbW4a6bgBKGHxU+FTJbNnHw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "greenlet==1.1.3.post0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_idna": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", - "version": "3.0.3", - "sha512": "sha512-MAWauBKz6sv6j/PXjSR0ow50GwZh8QlAY2vRlyN/MpcYhr5xf2UBt+P7g03MjGHCFImy3xBmt7gMvoDsen/gRQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "idna==2.7" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_importlib_metadata": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-arm64", - "version": "3.0.3", - "sha512": "sha512-NXATfeNJ2b3/SslsI/LbXIp1AaXM6yoKnEJQA2SW7LawfU+evBzoqgbcXap2AGRt1W+9VjavqaJCER+ilxnq9A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "importlib-metadata==6.11.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_oauth2client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-arm64", - "version": "6.0.28", - "sha512": "sha512-WE5/d59savB7vjvzXjvwN2G15qYG4kprGXWTH5iT/r7jkGs/D6CJNSHlPuP1FxHVK/aJrDIF3Ce8nsq65PlNhw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "oauth2client==4.1.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_opencensus_context": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-arm64", - "version": "8.0.3", - "sha512": "sha512-fSbx8v9UO3NChZb1IvrABhOq6y4ZWILlrjhBpRq89RT5x2WblYzfY7pHIvk7CnP/8mN4857VylIHe1Y4snP7lA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "opencensus-context==0.1.3" } }, - "nuget.microsoft.netcore.app.runtime.osx-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_opentelemetry_api": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-x64", - "version": "5.0.17", - "sha512": "sha512-2sAAzMHaag8pSyGZxRG94a69UxRmWHaQ8p5qnrNgoFzTa1X0b+jsLqzNvrQgQba4fTtNc3lUoRdIfqaQJb6MmQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "opentelemetry-api==1.25.0" } }, - "nuget.microsoft.netcore.app.runtime.win-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_opentelemetry_exporter_prometheus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-arm64", - "version": "3.0.3", - "sha512": "sha512-W9wQFjLpXfqXbV17s0FnAlPCUadTo58sA/yrQIc+vmUkFZ8m20D+XkBAUG9u6mut+oJta8K269Tc628P0E/uSA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_opentelemetry_resourcedetector_gcp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-arm64", - "version": "7.0.17", - "sha512": "sha512-/vD8BdiGKmIsOHAmUxa8OoV/Wa1ItCTysSrkWSwG4FOj/sLHePw993Kwg6SsDO+/Jc1B6oCuk3wAs+ouiJhlpw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_opentelemetry_sdk": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-arm64", - "version": "8.0.3", - "sha512": "sha512-8cr0QBFxcttwJAjAV+b7xzpW49lexXEBjS9BwxTqjTKRK31Zr+zwTZNgUOvfMbnV0YmUa0l+T7KDAiHHF00sYQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "opentelemetry-sdk==1.25.0" } }, - "nuget.microsoft.netcore.app.runtime.osx-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_opentelemetry_semantic_conventions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-arm64", - "version": "8.0.3", - "sha512": "sha512-WBfj2hlAwxNc3ihO1/eTTLt+FhOZSO3kgl8AaOYNX1AWzd7btkEPVYzWIJl01Xv1v917KP1iGxxkm3SN6LUXVA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_prometheus_client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", - "version": "6.0.28", - "sha512": "sha512-ARGJXod/9X+925y3kqoNVxNcTinKeXB+yVXa4wqWPyKB5rAaKyDfA+b27sehhJp3BtLElpd3naTnQXckOIxnqg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "prometheus_client==0.20.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_proto_plus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", - "version": "7.0.17", - "sha512": "sha512-qBhF/WbEGmX4CY4NDzsoH94Gf0re1ynHzZilV0Nt02MPm6yv2M0RO2FUOhMDIP2Iw0VIud3/WehAwrpMkJmt4A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "proto-plus==1.22.3" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_protobuf": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-x64", - "version": "3.0.3", - "sha512": "sha512-RD9dLMTl9G8p6eUkLLgFcU+deW+CFO6uJ0+5R1gS7piUQEPTuSDjVtO/NCGaWPC5rdgyGp82D79cmD5lW2yT8A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "protobuf>=5.27.1,<6.0dev" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_pyasn1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-arm64", - "version": "8.0.3", - "sha512": "sha512-vIyT0Eb+7CnxvYeAvh7BeRDhqIGtgDegjVRiGRFETmEFRMmbvl253L6KBmEyn2O56nYvdUA+4NhlywahQ5Kpew==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "pyasn1==0.5.0" } }, - "nuget.microsoft.netcore.app.runtime.win-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_pyasn1_modules": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-arm64", - "version": "8.0.3", - "sha512": "sha512-BNCdzoSZ4xYXJF6/O2kYyYnR8ESI6524wmy5DNZWpegBT7tjzPnewpPnByFfqOCdgxHvA+K9yBWy7jTVa9Y9Pw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "pyasn1-modules==0.3.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_requests": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-x64", - "version": "7.0.17", - "sha512": "sha512-BKvRY/HBJ9N/uN8VAmiF9WB4jEz0Zest6v9thuAdxLf43IKuolO5zurSi2q+fuN6nuhgdYHj3zI1KszZrQ2Pcw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "requests==2.25.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_rsa": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-x64", - "version": "5.0.17", - "sha512": "sha512-CpsTwPpyC8vNhPLdruZhxe+ffDASsDsvFjLGQ6vvcRwCYGpzJoQ7z78jWHhfcXbh2rKUq67ve4LWiIlEF58kCg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "rsa==4.9" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", - "version": "6.0.28", - "sha512": "sha512-McoAlQkxd2UsXCAYps+mWRcYPaPFFu8AnvCVRPwwIcfPi5qzT2AdZOTi+qoy3V4LK+Gda97ZwLQjyhMwhmom6Q==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "setuptools==44.1.1" } }, - "nuget.microsoft.netcore.app.runtime.osx-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_typing_extensions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-arm64", - "version": "6.0.28", - "sha512": "sha512-pkj9McmSXRyde2DiNy3zjDwB9dY8x010YZw12l/K/TsmlhEY1XrVEULLz8e80PoRHUAabd8uB6cYahCEMQv9BA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "typing-extensions==4.9.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_urllib3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", - "version": "3.1.32", - "sha512": "sha512-J0LbOrvRX/QJC+XSPM/v4v4b/wDJc8UKY9k8aR7mOYk6MfzkSuwc5Jz9yJzl9LCYuDb3hWYuYTZA+o8OqnZNZg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "urllib3==1.26.18" } }, - "nuget.microsoft.netcore.app.runtime.linux-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_wheel": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-x64", - "version": "3.1.32", - "sha512": "sha512-Sh3sRKcCjQwi7X9FPbbwz8tFygVewWLUiFO2/VnCOH40ZX9bix5nbESQxK0i8uy7OTuBDxNTGqcUvJxO+baw6A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "wheel==0.38.1" } }, - "nuget.microsoft.netcore.app.runtime.linux-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_wrapt": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-x64", - "version": "6.0.28", - "sha512": "sha512-MDWmRsrA316L/UmgPKDUfoVYKcuMNUmTBI9UC4BxNM6WriLgDHLDYeDITLZIuWcQYqncG5B17Fv+7PPxB9eN7Q==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "wrapt==1.16.0" } }, - "nuget.microsoft.netcore.app.runtime.win-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_zipp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-x64", - "version": "3.0.3", - "sha512": "sha512-Pwv8RB2F8LCVFpTL2kdCcNvru4EZsG1vSFljPClbpTJR3tF9mp0DAyxBbyfy6Tg2PwV4XMKysqy2tTd4zCqpBA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "zipp==3.17.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_zope_event": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-x64", - "version": "8.0.3", - "sha512": "sha512-2qIyMyKP6lqX24X3459TYKmuYN866ZYP99/UxqteYOyZclGXV5rrdrxXsf1FAFM7EgcGR7uhfVtffeBINkuNlA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "zope.event==4.5.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_310_zope_interface": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-x64", - "version": "8.0.3", - "sha512": "sha512-atqmE/GBwxUBwHG1yukG3HikvD9shkwmehDc0ADM/b6DWxEUtkrSCW1rP3TMxMusaCtZXOaQw4NCtCI6uxF9Pw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "grpc_python_dependencies_310", + "requirement": "zope.interface==6.1" } }, - "nuget.microsoft.netcore.app.runtime.win-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-arm64", - "version": "7.0.17", - "sha512": "sha512-YPOLaGXXkpTKgLMGBAtB/lIQltflhsbVZFbRMboscEW+r4dlTYpMwfhxfQxUmi9/IMjwiTFj6Ke1mw05DKuSxA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "absl-py==1.4.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_cachetools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-x64", - "version": "8.0.3", - "sha512": "sha512-AMLgGVFu0yjaw+8DEW7uNgAI0TXPPl7dnwEnoS8wFLOak6IXodBfz69kpT4E9vqbiYG6WsDNxRpLD7n0FrfdXw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "cachetools==5.3.2" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_certifi": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-x64", - "version": "3.1.32", - "sha512": "sha512-X7T+RFwnoDyFBe9+HzSqJ6MdqMEKrZBAZBDYhxhiKuR2St191gUJgbd7Ok9QpOHwrCaoYV9hysljG38k0VWLxw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "certifi==2023.7.22" } }, - "nuget.microsoft.netcore.app.runtime.win-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_chardet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-x64", - "version": "5.0.17", - "sha512": "sha512-Q+VlqOuhbAg5vU2RsWhKnPTP/QaeHzLhes32Y0aPadzKCgxYAxt2Bng7QTdNXqzraENevQQCFR83/oOutMp4/w==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "chardet==3.0.4" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_charset_normalizer": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-x64", - "version": "6.0.28", - "sha512": "sha512-QCeL21tY7yCMxPSIITNDwOZ27ezSh1opva7QdJgOJ+Y794bWg9HXgmvpNmQnFEM8pnv5kr4xQ7iK7MOwdJuEsg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "charset-normalizer==3.3.2" } }, - "nuget.microsoft.netcore.app.runtime.osx-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_coverage": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-x64", - "version": "3.1.32", - "sha512": "sha512-91V9PmRcFOJzY6lc3QzA2Vk7fLiTpaT/0a0DoYaaBOSXDX6sy0YjDa/PPYGDHUaYnxUUftqVmXz4Rd415ccAwg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "coverage==4.5.4" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_cython": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-arm64", - "version": "3.1.32", - "sha512": "sha512-5XvNdjhqnp3Hx7rmaXDW1GdVI5V3f3VXOQlnNAZ4nDZlQjNIEVRmxfbAwlE/XmnThwsldKa16kUSkd4yNgJEQw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "cython==3.0.0" } }, - "nuget.microsoft.netcore.app.runtime.win-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_deprecated": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-x64", - "version": "8.0.3", - "sha512": "sha512-SxBniyhYkk4Z3yjmIWlbFDY/1xO6nPjgGK8vTnizSYDDC8Hazku1rSTVSbUoNoq9P8xg63akAmXTR7TwzOwnNQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "Deprecated==1.2.14" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_gevent": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-arm64", - "version": "5.0.17", - "sha512": "sha512-dZajijsKrJJhOwts64gw4UMap0BwCW2+jyKVwkMPG6KypOosIoEn1Gg+XAWdo3GhBrqYvQ5XkPM1r63GglOqtA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "gevent==22.08.0" } }, - "nuget.microsoft.netcore.app.runtime.win-x64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_google_api_core": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-x64", - "version": "6.0.28", - "sha512": "sha512-9sBd6kglHwKmE2IEsydN+eql5+iRwt4IECdAgpnmY64mCum9hIx3CVYCHwHItmdi0MV6dZG8MVwC7ky9AgI1tw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "google-api-core==1.34.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_google_auth": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-arm64", - "version": "6.0.28", - "sha512": "sha512-5dFuvDm5b/dxCHzXZBSse0fNcF2Zcc4fXolA00Grp134uFf/OxeNjVzmMVZ+Ebcqfrq5t5l5d6cuyhhbuZ8OVA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "google-auth==2.23.4" } }, - "nuget.microsoft.netcore.app.runtime.linux-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_google_cloud_monitoring": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-x64", - "version": "5.0.17", - "sha512": "sha512-aZTIXNmm4nKrZP9iQrBAsuGFICZQdrZGbFq4p6StQ5eAfoWJK0maX/MWsXaWZGc/bc8o6h+v+elDxc29xuyo+g==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "google-cloud-monitoring==2.16.0" } }, - "nuget.microsoft.netcore.app.runtime.osx-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_google_cloud_trace": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-arm64", - "version": "7.0.17", - "sha512": "sha512-Hg/noPCsI4vHJBbE2bpexbDkKFKWNAjm7zhZP2mBNa6AcpqISgCyRAXCHIzTniRLq6JB0kddW8A5namdtkrxWw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "google-cloud-trace==1.11.3" } }, - "dotnet.runtime_packs": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_repo.bzl", - "ruleClassName": "_nuget_repo", + "grpc_python_dependencies_311_googleapis_common_protos": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "repo_name": "dotnet.runtime_packs", - "packages": [ - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v3.0.3\",\"sha512\":\"sha512-SsEFpDY7x0sPe1ULwddZ7n5p4dfcOdx5wXPvGJQeYvjRs7J4dbqNfGTNPja+x0Zzl7mq0/oTobd6DSVIQpEdAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v3.0.3\",\"sha512\":\"sha512-20QbquU9rhPmfN4BOzNRup9mxOFvRqUiSKhWy2HX3tWQzbdftkR3A/vuXdNVGclIBeyXfKO+S3W3YP9Fz3pN2g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-DtrV3ONhk1E5hL17DM95SVJKV99BrlxjHlRAiEm1PY00NfX9dcowR5DOLc4FLmVKU629o5/xWa5rHITcLIrbwg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-hQFrym9SCn9M2kwnJ5GV91CbTsfZhLSmcb0HDX901DIc4zbCF1fB/VAeHhfTd/4/ADgbMNE/n/cG9she4bGHIQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v3.0.3\",\"sha512\":\"sha512-dfHXm0iFa0QsOrbuTjO3EOXDHUelL90ZJuKfV//W1wekoBMKRhSbJPFq2SI99BGvQZJj7ysv9RT6QtIEiWfGXg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v3.0.3\",\"sha512\":\"sha512-Pwv8RB2F8LCVFpTL2kdCcNvru4EZsG1vSFljPClbpTJR3tF9mp0DAyxBbyfy6Tg2PwV4XMKysqy2tTd4zCqpBA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v3.0.3\",\"sha512\":\"sha512-W9wQFjLpXfqXbV17s0FnAlPCUadTo58sA/yrQIc+vmUkFZ8m20D+XkBAUG9u6mut+oJta8K269Tc628P0E/uSA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v3.1.32\",\"sha512\":\"sha512-Sh3sRKcCjQwi7X9FPbbwz8tFygVewWLUiFO2/VnCOH40ZX9bix5nbESQxK0i8uy7OTuBDxNTGqcUvJxO+baw6A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v3.1.32\",\"sha512\":\"sha512-30BMqutTq3QcWEyz4xicVoFFBDzjjYVFGOArgXxWvjT6sYBPO+vJJXfWWPdawkYWLVu+auPB0mmH9+QwpeL0uA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-jgeoftcDq2ks5Tb/2hI70KJzPYklL9cTmPISSq6MriPVOFhtZsbJwxuOrt86JanfolTujXe98kXbZXvUtpPmnw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-5XvNdjhqnp3Hx7rmaXDW1GdVI5V3f3VXOQlnNAZ4nDZlQjNIEVRmxfbAwlE/XmnThwsldKa16kUSkd4yNgJEQw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v3.1.32\",\"sha512\":\"sha512-91V9PmRcFOJzY6lc3QzA2Vk7fLiTpaT/0a0DoYaaBOSXDX6sy0YjDa/PPYGDHUaYnxUUftqVmXz4Rd415ccAwg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v3.1.32\",\"sha512\":\"sha512-cVOGmQYfQoQbls4z3fT1otCY08PvQwSJj3Ur+zwcJwd6Ejq0aRIkiiZZUQNxB/P6W+pfRTA5xi01u5lZzMvcKw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v3.1.32\",\"sha512\":\"sha512-k1EL5k/HYiUoQoTygRfUVAKwtmtpDKo4GC00OxvElEIMG5FmpYtnT075jBFqB0b5J3y4CB0kfQf1gZaiV9DwlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v5.0.17\",\"sha512\":\"sha512-aZTIXNmm4nKrZP9iQrBAsuGFICZQdrZGbFq4p6StQ5eAfoWJK0maX/MWsXaWZGc/bc8o6h+v+elDxc29xuyo+g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v5.0.17\",\"sha512\":\"sha512-8EXts9kMDVCteF1p5bIokt/VSOG1f47xpqyARkXXQ1zmbSL6VpJxoVu5/TR4qcYOAUBvH+FfrjdThJJ0or4FAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-YlhkW0/2+ZiagSg1ZglBCrtTVUwtJJZZ+TDjgoKwdVcxahPYgpXsUDWtKfHVFxCAGccTZc92HecvAbFmfspbVQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-us+amSBsQ885nIi2ApDzrDeBJKvvDCKSsGuF3wA7hxA9oFqpxpfijXpWARxTb3gzSOqjG6v/GjvOesWtTZTRWQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v5.0.17\",\"sha512\":\"sha512-2sAAzMHaag8pSyGZxRG94a69UxRmWHaQ8p5qnrNgoFzTa1X0b+jsLqzNvrQgQba4fTtNc3lUoRdIfqaQJb6MmQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v5.0.17\",\"sha512\":\"sha512-Q+VlqOuhbAg5vU2RsWhKnPTP/QaeHzLhes32Y0aPadzKCgxYAxt2Bng7QTdNXqzraENevQQCFR83/oOutMp4/w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v5.0.17\",\"sha512\":\"sha512-B2v3X59Gh8WD8079ZQJ68ipPA4qxjYHF++h0KqHhFMRIhVWwAMQfgkdPCSsnNyoNWZmXvVex/NQ3YWCV5LYFOA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v6.0.28\",\"sha512\":\"sha512-MDWmRsrA316L/UmgPKDUfoVYKcuMNUmTBI9UC4BxNM6WriLgDHLDYeDITLZIuWcQYqncG5B17Fv+7PPxB9eN7Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v6.0.28\",\"sha512\":\"sha512-x/m0RKyS4uO1BHd8w21v8FpdVousVgV6YVEZkAPalFH0BCf77CZVArSuYF3rxyINonVC9/D9gHRugHc9Rx4cLw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v6.0.28\",\"sha512\":\"sha512-V29vC0FK0zHMF/JnOws/GB/JdN+V/S1Lw000H1Qk3gHNuRcv8OQF7si3N8mu91RfyM1QmVh5SE6VfgBy/s1Xng==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v6.0.28\",\"sha512\":\"sha512-9PnNEXr70E8jMVgUId380xfB0r6V150SmXmJ8fy+yDjtplGOKPDqcLUtDMAhLK/3ue1EIXaC18jpUPGjTSDXRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v6.0.28\",\"sha512\":\"sha512-yhk89RxfqaPoWEtK/5nEwZKRJsaDQ8hfAfYPOm0c1Rt5L9g3u/Hw1QywDupreJbRXG51WVtjGY1YnjazsUuWWQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v6.0.28\",\"sha512\":\"sha512-pkj9McmSXRyde2DiNy3zjDwB9dY8x010YZw12l/K/TsmlhEY1XrVEULLz8e80PoRHUAabd8uB6cYahCEMQv9BA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v6.0.28\",\"sha512\":\"sha512-9sBd6kglHwKmE2IEsydN+eql5+iRwt4IECdAgpnmY64mCum9hIx3CVYCHwHItmdi0MV6dZG8MVwC7ky9AgI1tw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v6.0.28\",\"sha512\":\"sha512-Q/IkChRKqqhLKq2mJmFJazooX6/RsL3I1VcIBq6sMh+MJ6Y6qGW6IdW5PoQwd7ynfKtyDOdldpRlCZLP1Ua0dw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v7.0.17\",\"sha512\":\"sha512-Lenw9OxCemj6UT+MZogIOflRpw3vmi8IdUXk327Lj0vibldfd9lUc3rO2zfzlTBD6fzz6BhXY3schiQtkWQ3Bw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v7.0.17\",\"sha512\":\"sha512-Y1T97Qry9uRfg3w48o5SirDPPUZ5/fw5XtRQf8mhCDwWmo4Xn6uBTuto1YKAuR77RLRMGAvbqVLFWm2FTTxs3Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v7.0.17\",\"sha512\":\"sha512-/+BWvytdGKhaoIUvYuswuvFGcfLHindOnkPsYT9DsqQNM3ymC9Y/wH9W2alIFHFlklYk7B9ClT4r6rsHpvq6ig==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v7.0.17\",\"sha512\":\"sha512-nUMDckTRAg7+b+G6FtJ1MggLEpsjR0VDP6xs/JgtK4b27ftGhjSvbB2a87QncXsztiW5SwUGmS8wv0GjiDxTdQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v7.0.17\",\"sha512\":\"sha512-0ssKzjvtDTkBHeqbhxACkrAxy1DUpIyqbAz4Epk4AwPOHSdzguAZXACQXBKrVz2FnNuHqqi0cZrtYX2UZ9I1Uw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v7.0.17\",\"sha512\":\"sha512-Hg/noPCsI4vHJBbE2bpexbDkKFKWNAjm7zhZP2mBNa6AcpqISgCyRAXCHIzTniRLq6JB0kddW8A5namdtkrxWw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v7.0.17\",\"sha512\":\"sha512-vKOq7wBnk8MYFUD0mWGo8nNCy6U4l0w+vFuygO1Z5SATUyg77vp8QwVwDIIT1iXVQgRZRRKdCZHaLkjmLGiWSQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v7.0.17\",\"sha512\":\"sha512-YPOLaGXXkpTKgLMGBAtB/lIQltflhsbVZFbRMboscEW+r4dlTYpMwfhxfQxUmi9/IMjwiTFj6Ke1mw05DKuSxA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v8.0.3\",\"sha512\":\"sha512-2qIyMyKP6lqX24X3459TYKmuYN866ZYP99/UxqteYOyZclGXV5rrdrxXsf1FAFM7EgcGR7uhfVtffeBINkuNlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v8.0.3\",\"sha512\":\"sha512-fSbx8v9UO3NChZb1IvrABhOq6y4ZWILlrjhBpRq89RT5x2WblYzfY7pHIvk7CnP/8mN4857VylIHe1Y4snP7lA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v8.0.3\",\"sha512\":\"sha512-AMLgGVFu0yjaw+8DEW7uNgAI0TXPPl7dnwEnoS8wFLOak6IXodBfz69kpT4E9vqbiYG6WsDNxRpLD7n0FrfdXw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v8.0.3\",\"sha512\":\"sha512-vIyT0Eb+7CnxvYeAvh7BeRDhqIGtgDegjVRiGRFETmEFRMmbvl253L6KBmEyn2O56nYvdUA+4NhlywahQ5Kpew==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v8.0.3\",\"sha512\":\"sha512-uroqLZnzqE8vTPeQUdk3s7QXHPAoOiBIssTVMs8rBz9l+IRkpA0N6gQC0zYhkD+mFTMTXOl6HdO77kBN9NdPvQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v8.0.3\",\"sha512\":\"sha512-WBfj2hlAwxNc3ihO1/eTTLt+FhOZSO3kgl8AaOYNX1AWzd7btkEPVYzWIJl01Xv1v917KP1iGxxkm3SN6LUXVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v8.0.3\",\"sha512\":\"sha512-SxBniyhYkk4Z3yjmIWlbFDY/1xO6nPjgGK8vTnizSYDDC8Hazku1rSTVSbUoNoq9P8xg63akAmXTR7TwzOwnNQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v8.0.3\",\"sha512\":\"sha512-BNCdzoSZ4xYXJF6/O2kYyYnR8ESI6524wmy5DNZWpegBT7tjzPnewpPnByFfqOCdgxHvA+K9yBWy7jTVa9Y9Pw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v3.0.3\",\"sha512\":\"sha512-RD9dLMTl9G8p6eUkLLgFcU+deW+CFO6uJ0+5R1gS7piUQEPTuSDjVtO/NCGaWPC5rdgyGp82D79cmD5lW2yT8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v3.0.3\",\"sha512\":\"sha512-NXATfeNJ2b3/SslsI/LbXIp1AaXM6yoKnEJQA2SW7LawfU+evBzoqgbcXap2AGRt1W+9VjavqaJCER+ilxnq9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-jJYE+eZjILELbummWUpew6J2X0m/42fHn/rSTlgrKx4xy4NFm2jbmkpVmLq8B2jZpVum0gEpHj1aTFRfl+OgoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-MAWauBKz6sv6j/PXjSR0ow50GwZh8QlAY2vRlyN/MpcYhr5xf2UBt+P7g03MjGHCFImy3xBmt7gMvoDsen/gRQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v3.0.3\",\"sha512\":\"sha512-HotMqTD/tTUSzdoDlFa0a42eZHdBJgAPm/EBHCsvX+Vxh93LBf6P/6CFsMhpuuly7lh3YcMhYuT/GucAtxd8zQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v3.0.3\",\"sha512\":\"sha512-Y/So/PcccsoBY9QQuDIJLQamNKgBELmGWpZmdIyoXP80+TUqddM7r+BW51HZYheOmoKTh4YBECK7TUNVXCJZiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v3.1.32\",\"sha512\":\"sha512-pc/0skPzojvKnMMgUueo8aHwmdfF7oLrcmbtScSDi3eT6MejvwzzBVp63lgcsGM+OVLyojf79iBAicd/b7ykCw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v3.1.32\",\"sha512\":\"sha512-Cgzc3B2gBawYYV1g1FVEVg0k9hotwGL3SPZ4ptGegs0Q6lOoIrLB7j+Vb99pTBmVs3NQs5IJeVzIaTvJ+g0Orw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-CiDKX16Vbv4fy7I3HyPm7OKyhz6v61idhaDEr1kW0R+ZGCsV2vTNC864OzbovBL0Pmfb/qYQK7Ly4k5FsiVfHw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-J0LbOrvRX/QJC+XSPM/v4v4b/wDJc8UKY9k8aR7mOYk6MfzkSuwc5Jz9yJzl9LCYuDb3hWYuYTZA+o8OqnZNZg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v3.1.32\",\"sha512\":\"sha512-X7T+RFwnoDyFBe9+HzSqJ6MdqMEKrZBAZBDYhxhiKuR2St191gUJgbd7Ok9QpOHwrCaoYV9hysljG38k0VWLxw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v3.1.32\",\"sha512\":\"sha512-8M5j6phvShGe10B27UVVXdKvMRyJ1Xp2iKBpdgB1UlrCTB5oGoIgQeK82j2iNwE+n+R0mL1CbTYrnib/mRFsdA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v3.1.32\",\"sha512\":\"sha512-ME5y8L40XafMwpsTay6peXu4CtvWU+5onUnItr6YzPRJPJYvcd9h1pvBGeBbjuv7IV1Zt07zcuLBE+S40HlRXQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v5.0.17\",\"sha512\":\"sha512-mDNoNuUVQf6fYNqgupRzjgbLPuqaj1dbTc01tY3g34TW6ARLtpnTPS8ur4ayMoNnlsQLpoy+Zi7ob0K1dNIZ0w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v5.0.17\",\"sha512\":\"sha512-qOm4eEGPVMVd+z+CGo2C5l2Qss7hoWREpLILBhbAzS0B3Lb1pMyX7prz9R0l6WUuyeKoKRff2hIWfI69vsURhg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-ZQsaMSvv1ygkbU1O5Ns4wlwu4BSGG/5fVSn82wozqCyEISmDNCQyh33iQgadLNefEQWhHUsdcFYb3OAYdfFSoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-HGXmMdpWSkhLkskxer6nrd7HVqGgpiGcxTOFpJgsucBEuiy6LXHFPQ9micU4WiAuosV52Qc8sVBmnhGeCcwNTg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v5.0.17\",\"sha512\":\"sha512-CpsTwPpyC8vNhPLdruZhxe+ffDASsDsvFjLGQ6vvcRwCYGpzJoQ7z78jWHhfcXbh2rKUq67ve4LWiIlEF58kCg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v5.0.17\",\"sha512\":\"sha512-jIZjwj5feyF7p95M0hosArKnBMajc2Zy86UIg6YUcR0mJkcbPpbS+ReLn8hY6Hkml4uJcQZs9ssQOPyJ97AN8w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v5.0.17\",\"sha512\":\"sha512-dZajijsKrJJhOwts64gw4UMap0BwCW2+jyKVwkMPG6KypOosIoEn1Gg+XAWdo3GhBrqYvQ5XkPM1r63GglOqtA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v6.0.28\",\"sha512\":\"sha512-damWlGv579s0bNotQ+Xcy+XZfDvZX9L7PJDTjd2nuRcS6ckIPwLWWkCmkaWFf5ndrjN2LrCxZ9ezZEtPBP2zOw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v6.0.28\",\"sha512\":\"sha512-d7aCegi8yRJXbTaYhM75z3RIkji5Ld9qDi4MmCffxFjpEddmbQfib42gpBrGY1bdc/G6bhoRcHpM6pOnE0GY+g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v6.0.28\",\"sha512\":\"sha512-ARGJXod/9X+925y3kqoNVxNcTinKeXB+yVXa4wqWPyKB5rAaKyDfA+b27sehhJp3BtLElpd3naTnQXckOIxnqg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v6.0.28\",\"sha512\":\"sha512-McoAlQkxd2UsXCAYps+mWRcYPaPFFu8AnvCVRPwwIcfPi5qzT2AdZOTi+qoy3V4LK+Gda97ZwLQjyhMwhmom6Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v6.0.28\",\"sha512\":\"sha512-QCeL21tY7yCMxPSIITNDwOZ27ezSh1opva7QdJgOJ+Y794bWg9HXgmvpNmQnFEM8pnv5kr4xQ7iK7MOwdJuEsg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v6.0.28\",\"sha512\":\"sha512-WE5/d59savB7vjvzXjvwN2G15qYG4kprGXWTH5iT/r7jkGs/D6CJNSHlPuP1FxHVK/aJrDIF3Ce8nsq65PlNhw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v6.0.28\",\"sha512\":\"sha512-ZIXD7z1791YsZvhLD7BwdVe2OHIok7ajUY3/iT4pcIxLyk40WEXmGTqszPLz02BXbW4a6bgBKGHxU+FTJbNnHw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v6.0.28\",\"sha512\":\"sha512-5dFuvDm5b/dxCHzXZBSse0fNcF2Zcc4fXolA00Grp134uFf/OxeNjVzmMVZ+Ebcqfrq5t5l5d6cuyhhbuZ8OVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v7.0.17\",\"sha512\":\"sha512-kZN1hTiJnOfmDLc3vsidd8bWY+MVd9FfRAkspl9VvePIUJUc0TUG8TonYP8pgjrypns25bQ6fgnKOIg0VpWPQQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v7.0.17\",\"sha512\":\"sha512-jZK4BPVthpHGpLjSnSOy610NGSMIAbxQHlFGXL3AeKFDd69r3L/vdb+ipRqoNl6phxoL8h8bH4/E7UB6kuhUtA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v7.0.17\",\"sha512\":\"sha512-qBhF/WbEGmX4CY4NDzsoH94Gf0re1ynHzZilV0Nt02MPm6yv2M0RO2FUOhMDIP2Iw0VIud3/WehAwrpMkJmt4A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v7.0.17\",\"sha512\":\"sha512-vm1pkIA5cXEaMZRStHWx8gw5oD+f+DGpo8oXi4Aqn44vIAUtITBjqglbQdgnqCHgopsK6Bgtul1Ubj2nZOCTkQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v7.0.17\",\"sha512\":\"sha512-AAf0oXoirinh9T/hcVn0qvEW6DxpKP8aWQHX1qEL9FmIXVbBYH51pSNGL8vg7dxxoWYBrYJn14mX/wvlL2KKJQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v7.0.17\",\"sha512\":\"sha512-64bQtKkPY02kZNsFMp9pMoikoyMsIy8GVcPD4fhG7QnekRby9Qkfvpocbr757VeEaDGZNWH/gBYdOdegu41Dcw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v7.0.17\",\"sha512\":\"sha512-BKvRY/HBJ9N/uN8VAmiF9WB4jEz0Zest6v9thuAdxLf43IKuolO5zurSi2q+fuN6nuhgdYHj3zI1KszZrQ2Pcw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v7.0.17\",\"sha512\":\"sha512-/vD8BdiGKmIsOHAmUxa8OoV/Wa1ItCTysSrkWSwG4FOj/sLHePw993Kwg6SsDO+/Jc1B6oCuk3wAs+ouiJhlpw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v8.0.3\",\"sha512\":\"sha512-tKeUW1hAKtIm4opuSg82qncPcsJ606l6oikvUx6lgefenMnV6XVQeE6UUlDA+fpw2CM4zl4Ig0QDs4bVBFUgXw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v8.0.3\",\"sha512\":\"sha512-KLCXZK7QWwl7v34Dr18FqyfsmS/BR2KW+MjX2ODxu2WXWUAA6Vy4pHhwGdS9KJsqU7XJpS7SJKjalM8dSy7WlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v8.0.3\",\"sha512\":\"sha512-zkbcDGiu7Bp1NaxVKaWrPyAyqEwEalMVXhHzXOOJrAjpYdnnY0X1DPnEpjDf4oy5k1dWKkPU2qlk+kXFWxMBvA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v8.0.3\",\"sha512\":\"sha512-Vv2gGE+ijATF7WlOTNIEdnrROUZYlseHLW90VDRNHz5zoGnSt/sXLXlxcye+/rQKic3bvsiMqsKxgim0LkxQPw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v8.0.3\",\"sha512\":\"sha512-atqmE/GBwxUBwHG1yukG3HikvD9shkwmehDc0ADM/b6DWxEUtkrSCW1rP3TMxMusaCtZXOaQw4NCtCI6uxF9Pw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v8.0.3\",\"sha512\":\"sha512-8cr0QBFxcttwJAjAV+b7xzpW49lexXEBjS9BwxTqjTKRK31Zr+zwTZNgUOvfMbnV0YmUa0l+T7KDAiHHF00sYQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v8.0.3\",\"sha512\":\"sha512-6ZRUQf4/7qzWWHtL+lyyUoRFlU/hRF0819VAVLAUQRnua6cpv4V4EkjhETHERhMaMQZCrHhKEoLP/CBb4tPT7w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v8.0.3\",\"sha512\":\"sha512-jJTVu+l5nJn7KBUnV/bTfdxH8C43TTFuiRiJiLpnF8bw/J0BzFHZhr0Co4OXGpkSuuIMMFo5RDiywKrePAx5wQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}" - ], - "targeting_pack_overrides": { - "microsoft.netcore.app.runtime.linux-x64": [], - "microsoft.netcore.app.runtime.linux-arm64": [], - "microsoft.netcore.app.runtime.linux-musl-x64": [], - "microsoft.netcore.app.runtime.linux-musl-arm64": [], - "microsoft.netcore.app.runtime.osx-x64": [], - "microsoft.netcore.app.runtime.win-x64": [], - "microsoft.netcore.app.runtime.win-arm64": [], - "microsoft.netcore.app.runtime.osx-arm64": [], - "microsoft.aspnetcore.app.runtime.linux-x64": [], - "microsoft.aspnetcore.app.runtime.linux-arm64": [], - "microsoft.aspnetcore.app.runtime.linux-musl-x64": [], - "microsoft.aspnetcore.app.runtime.linux-musl-arm64": [], - "microsoft.aspnetcore.app.runtime.osx-x64": [], - "microsoft.aspnetcore.app.runtime.win-x64": [], - "microsoft.aspnetcore.app.runtime.win-arm64": [], - "microsoft.aspnetcore.app.runtime.osx-arm64": [] - }, - "framework_list": { - "microsoft.netcore.app.runtime.linux-x64": [], - "microsoft.netcore.app.runtime.linux-arm64": [], - "microsoft.netcore.app.runtime.linux-musl-x64": [], - "microsoft.netcore.app.runtime.linux-musl-arm64": [], - "microsoft.netcore.app.runtime.osx-x64": [], - "microsoft.netcore.app.runtime.win-x64": [], - "microsoft.netcore.app.runtime.win-arm64": [], - "microsoft.netcore.app.runtime.osx-arm64": [], - "microsoft.aspnetcore.app.runtime.linux-x64": [], - "microsoft.aspnetcore.app.runtime.linux-arm64": [], - "microsoft.aspnetcore.app.runtime.linux-musl-x64": [], - "microsoft.aspnetcore.app.runtime.linux-musl-arm64": [], - "microsoft.aspnetcore.app.runtime.osx-x64": [], - "microsoft.aspnetcore.app.runtime.win-x64": [], - "microsoft.aspnetcore.app.runtime.win-arm64": [], - "microsoft.aspnetcore.app.runtime.osx-arm64": [] - } + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "googleapis-common-protos==1.63.1" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_greenlet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-x64", - "version": "3.0.3", - "sha512": "sha512-DtrV3ONhk1E5hL17DM95SVJKV99BrlxjHlRAiEm1PY00NfX9dcowR5DOLc4FLmVKU629o5/xWa5rHITcLIrbwg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "greenlet==1.1.3.post0" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_idna": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-arm64", - "version": "7.0.17", - "sha512": "sha512-nUMDckTRAg7+b+G6FtJ1MggLEpsjR0VDP6xs/JgtK4b27ftGhjSvbB2a87QncXsztiW5SwUGmS8wv0GjiDxTdQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "idna==2.7" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_importlib_metadata": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-x64", - "version": "3.1.32", - "sha512": "sha512-jgeoftcDq2ks5Tb/2hI70KJzPYklL9cTmPISSq6MriPVOFhtZsbJwxuOrt86JanfolTujXe98kXbZXvUtpPmnw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "importlib-metadata==6.11.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_oauth2client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-arm64", - "version": "3.0.3", - "sha512": "sha512-20QbquU9rhPmfN4BOzNRup9mxOFvRqUiSKhWy2HX3tWQzbdftkR3A/vuXdNVGclIBeyXfKO+S3W3YP9Fz3pN2g==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "oauth2client==4.1.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_opencensus_context": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", - "version": "3.1.32", - "sha512": "sha512-CiDKX16Vbv4fy7I3HyPm7OKyhz6v61idhaDEr1kW0R+ZGCsV2vTNC864OzbovBL0Pmfb/qYQK7Ly4k5FsiVfHw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "opencensus-context==0.1.3" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_opentelemetry_api": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-x64", - "version": "8.0.3", - "sha512": "sha512-6ZRUQf4/7qzWWHtL+lyyUoRFlU/hRF0819VAVLAUQRnua6cpv4V4EkjhETHERhMaMQZCrHhKEoLP/CBb4tPT7w==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "opentelemetry-api==1.25.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_opentelemetry_exporter_prometheus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-x64", - "version": "7.0.17", - "sha512": "sha512-/+BWvytdGKhaoIUvYuswuvFGcfLHindOnkPsYT9DsqQNM3ymC9Y/wH9W2alIFHFlklYk7B9ClT4r6rsHpvq6ig==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, - "nuget.microsoft.netcore.app.runtime.osx-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_opentelemetry_resourcedetector_gcp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-x64", - "version": "3.0.3", - "sha512": "sha512-dfHXm0iFa0QsOrbuTjO3EOXDHUelL90ZJuKfV//W1wekoBMKRhSbJPFq2SI99BGvQZJj7ysv9RT6QtIEiWfGXg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_opentelemetry_sdk": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", - "version": "3.0.3", - "sha512": "sha512-jJYE+eZjILELbummWUpew6J2X0m/42fHn/rSTlgrKx4xy4NFm2jbmkpVmLq8B2jZpVum0gEpHj1aTFRfl+OgoQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "opentelemetry-sdk==1.25.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_opentelemetry_semantic_conventions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", - "version": "8.0.3", - "sha512": "sha512-Vv2gGE+ijATF7WlOTNIEdnrROUZYlseHLW90VDRNHz5zoGnSt/sXLXlxcye+/rQKic3bvsiMqsKxgim0LkxQPw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, - "nuget.microsoft.netcore.app.runtime.linux-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_prometheus_client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-arm64", - "version": "3.1.32", - "sha512": "sha512-30BMqutTq3QcWEyz4xicVoFFBDzjjYVFGOArgXxWvjT6sYBPO+vJJXfWWPdawkYWLVu+auPB0mmH9+QwpeL0uA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "prometheus_client==0.20.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_proto_plus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-x64", - "version": "3.1.32", - "sha512": "sha512-pc/0skPzojvKnMMgUueo8aHwmdfF7oLrcmbtScSDi3eT6MejvwzzBVp63lgcsGM+OVLyojf79iBAicd/b7ykCw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "proto-plus==1.22.3" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_protobuf": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", - "version": "5.0.17", - "sha512": "sha512-HGXmMdpWSkhLkskxer6nrd7HVqGgpiGcxTOFpJgsucBEuiy6LXHFPQ9micU4WiAuosV52Qc8sVBmnhGeCcwNTg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "protobuf>=5.27.1,<6.0dev" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-x64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_pyasn1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-x64", - "version": "3.1.32", - "sha512": "sha512-8M5j6phvShGe10B27UVVXdKvMRyJ1Xp2iKBpdgB1UlrCTB5oGoIgQeK82j2iNwE+n+R0mL1CbTYrnib/mRFsdA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "pyasn1==0.5.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_pyasn1_modules": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-arm64", - "version": "7.0.17", - "sha512": "sha512-jZK4BPVthpHGpLjSnSOy610NGSMIAbxQHlFGXL3AeKFDd69r3L/vdb+ipRqoNl6phxoL8h8bH4/E7UB6kuhUtA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "pyasn1-modules==0.3.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_requests": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-arm64", - "version": "3.1.32", - "sha512": "sha512-Cgzc3B2gBawYYV1g1FVEVg0k9hotwGL3SPZ4ptGegs0Q6lOoIrLB7j+Vb99pTBmVs3NQs5IJeVzIaTvJ+g0Orw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "requests==2.25.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_rsa": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-arm64", - "version": "8.0.3", - "sha512": "sha512-KLCXZK7QWwl7v34Dr18FqyfsmS/BR2KW+MjX2ODxu2WXWUAA6Vy4pHhwGdS9KJsqU7XJpS7SJKjalM8dSy7WlA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "rsa==4.9" } }, - "nuget.microsoft.netcore.app.runtime.linux-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-arm64", - "version": "7.0.17", - "sha512": "sha512-Y1T97Qry9uRfg3w48o5SirDPPUZ5/fw5XtRQf8mhCDwWmo4Xn6uBTuto1YKAuR77RLRMGAvbqVLFWm2FTTxs3Q==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "setuptools==44.1.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_typing_extensions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-x64", - "version": "7.0.17", - "sha512": "sha512-kZN1hTiJnOfmDLc3vsidd8bWY+MVd9FfRAkspl9VvePIUJUc0TUG8TonYP8pgjrypns25bQ6fgnKOIg0VpWPQQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "typing-extensions==4.9.0" } }, - "nuget.microsoft.netcore.app.runtime.win-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_urllib3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-arm64", - "version": "5.0.17", - "sha512": "sha512-B2v3X59Gh8WD8079ZQJ68ipPA4qxjYHF++h0KqHhFMRIhVWwAMQfgkdPCSsnNyoNWZmXvVex/NQ3YWCV5LYFOA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "urllib3==1.26.18" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_wheel": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-x64", - "version": "7.0.17", - "sha512": "sha512-AAf0oXoirinh9T/hcVn0qvEW6DxpKP8aWQHX1qEL9FmIXVbBYH51pSNGL8vg7dxxoWYBrYJn14mX/wvlL2KKJQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "wheel==0.38.1" } }, - "nuget.microsoft.netcore.app.runtime.win-arm64.v3.1.32": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_wrapt": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-arm64", - "version": "3.1.32", - "sha512": "sha512-k1EL5k/HYiUoQoTygRfUVAKwtmtpDKo4GC00OxvElEIMG5FmpYtnT075jBFqB0b5J3y4CB0kfQf1gZaiV9DwlA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "wrapt==1.16.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_zipp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.win-arm64", - "version": "8.0.3", - "sha512": "sha512-jJTVu+l5nJn7KBUnV/bTfdxH8C43TTFuiRiJiLpnF8bw/J0BzFHZhr0Co4OXGpkSuuIMMFo5RDiywKrePAx5wQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "zipp==3.17.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_zope_event": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-x64", - "version": "5.0.17", - "sha512": "sha512-mDNoNuUVQf6fYNqgupRzjgbLPuqaj1dbTc01tY3g34TW6ARLtpnTPS8ur4ayMoNnlsQLpoy+Zi7ob0K1dNIZ0w==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "zope.event==4.5.0" } }, - "nuget.microsoft.netcore.app.runtime.win-arm64.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_311_zope_interface": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.win-arm64", - "version": "6.0.28", - "sha512": "sha512-Q/IkChRKqqhLKq2mJmFJazooX6/RsL3I1VcIBq6sMh+MJ6Y6qGW6IdW5PoQwd7ynfKtyDOdldpRlCZLP1Ua0dw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "grpc_python_dependencies_311", + "requirement": "zope.interface==6.1" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-arm64", - "version": "7.0.17", - "sha512": "sha512-64bQtKkPY02kZNsFMp9pMoikoyMsIy8GVcPD4fhG7QnekRby9Qkfvpocbr757VeEaDGZNWH/gBYdOdegu41Dcw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "absl-py==1.4.0" } }, - "nuget.microsoft.netcore.app.runtime.osx-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_cachetools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-x64", - "version": "8.0.3", - "sha512": "sha512-uroqLZnzqE8vTPeQUdk3s7QXHPAoOiBIssTVMs8rBz9l+IRkpA0N6gQC0zYhkD+mFTMTXOl6HdO77kBN9NdPvQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "cachetools==5.3.2" } }, - "nuget.microsoft.netcore.app.runtime.osx-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_certifi": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.osx-x64", - "version": "7.0.17", - "sha512": "sha512-0ssKzjvtDTkBHeqbhxACkrAxy1DUpIyqbAz4Epk4AwPOHSdzguAZXACQXBKrVz2FnNuHqqi0cZrtYX2UZ9I1Uw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "certifi==2023.7.22" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_chardet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", - "version": "8.0.3", - "sha512": "sha512-zkbcDGiu7Bp1NaxVKaWrPyAyqEwEalMVXhHzXOOJrAjpYdnnY0X1DPnEpjDf4oy5k1dWKkPU2qlk+kXFWxMBvA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "chardet==3.0.4" } }, - "nuget.microsoft.netcore.app.runtime.linux-arm64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_charset_normalizer": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-arm64", - "version": "5.0.17", - "sha512": "sha512-8EXts9kMDVCteF1p5bIokt/VSOG1f47xpqyARkXXQ1zmbSL6VpJxoVu5/TR4qcYOAUBvH+FfrjdThJJ0or4FAw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "charset-normalizer==3.3.2" } }, - "nuget.microsoft.netcore.app.runtime.linux-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_coverage": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-x64", - "version": "3.0.3", - "sha512": "sha512-SsEFpDY7x0sPe1ULwddZ7n5p4dfcOdx5wXPvGJQeYvjRs7J4dbqNfGTNPja+x0Zzl7mq0/oTobd6DSVIQpEdAw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "coverage==4.5.4" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_cython": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-arm64", - "version": "3.0.3", - "sha512": "sha512-hQFrym9SCn9M2kwnJ5GV91CbTsfZhLSmcb0HDX901DIc4zbCF1fB/VAeHhfTd/4/ADgbMNE/n/cG9she4bGHIQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "cython==3.0.0" } }, - "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v3.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_deprecated": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.osx-x64", - "version": "3.0.3", - "sha512": "sha512-HotMqTD/tTUSzdoDlFa0a42eZHdBJgAPm/EBHCsvX+Vxh93LBf6P/6CFsMhpuuly7lh3YcMhYuT/GucAtxd8zQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "Deprecated==1.2.14" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_gevent": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-x64", - "version": "8.0.3", - "sha512": "sha512-tKeUW1hAKtIm4opuSg82qncPcsJ606l6oikvUx6lgefenMnV6XVQeE6UUlDA+fpw2CM4zl4Ig0QDs4bVBFUgXw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "gevent==22.08.0" } }, - "nuget.microsoft.netcore.app.runtime.linux-x64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_google_api_core": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-x64", - "version": "7.0.17", - "sha512": "sha512-Lenw9OxCemj6UT+MZogIOflRpw3vmi8IdUXk327Lj0vibldfd9lUc3rO2zfzlTBD6fzz6BhXY3schiQtkWQ3Bw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "google-api-core==1.34.1" } }, - "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v5.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_google_auth": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.runtime.linux-musl-x64", - "version": "5.0.17", - "sha512": "sha512-YlhkW0/2+ZiagSg1ZglBCrtTVUwtJJZZ+TDjgoKwdVcxahPYgpXsUDWtKfHVFxCAGccTZc92HecvAbFmfspbVQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "google-auth==2.23.4" } }, - "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_google_cloud_monitoring": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", - "version": "7.0.17", - "sha512": "sha512-vm1pkIA5cXEaMZRStHWx8gw5oD+f+DGpo8oXi4Aqn44vIAUtITBjqglbQdgnqCHgopsK6Bgtul1Ubj2nZOCTkQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "google-cloud-monitoring==2.16.0" } - } - }, - "recordedRepoMappingEntries": [ - [ - "local_config_platform", - "platforms", - "platforms" - ], - [ - "platforms", - "host_platform", - "platforms~host_platform~host_platform" - ], - [ - "rules_dotnet~", - "bazel_skylib", - "bazel_skylib~" - ], - [ - "rules_dotnet~", - "bazel_tools", - "bazel_tools" - ], - [ - "rules_dotnet~", - "local_config_platform", - "local_config_platform" - ], - [ - "rules_dotnet~", - "rules_dotnet", - "rules_dotnet~" - ] - ] - } - }, - "@@rules_dotnet~//dotnet/private/sdk/targeting_packs:dotnet.targeting_packs_extension.bzl%targeting_packs_extension": { - "general": { - "bzlTransitiveDigest": "d/C9hvdlLuZuolzycCxdcaH+dDWI+dJLrDUpDXklnXw=", - "usagesDigest": "HonjV1H7BJagPGQGSkqEwWbIDx9mnZXE60oDPTe7N1c=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "nuget.microsoft.netframework.referenceassemblies.net20.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + }, + "grpc_python_dependencies_312_google_cloud_trace": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net20", - "version": "1.0.3", - "sha512": "sha512-M1vB2xSMJY0FdXNSUH4kjj04aTqWIOPUKeUUfaCoVA5JVw30XGO9ID7mUuBo+inSXLgmLvoMkSb3d98YEQwfyA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "google-cloud-trace==1.11.3" } }, - "nuget.netstandard.library.ref.v2.1.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_googleapis_common_protos": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "netstandard.library.ref", - "version": "2.1.0", - "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "googleapis-common-protos==1.63.1" } }, - "nuget.microsoft.netcore.app.ref.v3.0.1": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_greenlet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.ref", - "version": "3.0.1", - "sha512": "sha512-JPbWGLnLSKJoP+E4dqQd93QIQ4GqXXv/+iltuzd1hFXHEqf1Ie5oOK/x/Z/oJn6PeFTSvOghef32T4cBUi9C1A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "greenlet==1.1.3.post0" } }, - "nuget.microsoft.netcore.app.ref.v3.1.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_idna": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.ref", - "version": "3.1.0", - "sha512": "sha512-cTXlQgzxZx5XsAIVw8tcdYhvPpcScA3vG3AQ/ScleqMn32SMBCIQqetoE0X0EqPSjW3S+hw/pRIUli0msjiJ9A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "idna==2.7" } }, - "nuget.microsoft.aspnetcore.app.ref.v3.1.10": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_importlib_metadata": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.ref", - "version": "3.1.10", - "sha512": "sha512-yojrAwINItqiOp1XYc50AakRLEnJTOLSgCHdWMECI09NB+25i2eL/gaVcGfC/1986bsGGa/Afd85tcpFsuUnSQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "importlib-metadata==6.11.0" } }, - "nuget.microsoft.aspnetcore.app.ref.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_oauth2client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.ref", - "version": "8.0.3", - "sha512": "sha512-63hpt6nuhCktaoYxAB2RgldBxYCQY6SQ/oJqWnsd3ooIcBgIBp8ksbuDyZctWypEi10P/kzlnXbNdslVwFLeDw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "oauth2client==4.1.0" } }, - "nuget.microsoft.netframework.referenceassemblies.net40.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_opencensus_context": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net40", - "version": "1.0.3", - "sha512": "sha512-vUXmwPxi7lY1DEmxnrnve/a4JgN/Z1XE6Raozcmlqrf2OZxs9smXBb3Q9y2dZ2lCPtVMyZBRM4jQPBXz04InpQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "opencensus-context==0.1.3" } }, - "nuget.microsoft.aspnetcore.app.ref.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_opentelemetry_api": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.ref", - "version": "6.0.28", - "sha512": "sha512-w9TnQpG7AazEtx6qCo6YNpzgzS6sGbTCSCkTnojUFzTGC/pSPnmcZej9ZCJP/BUGfO8kDWisGTmYzlk/OzlGuA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "opentelemetry-api==1.25.0" } }, - "nuget.microsoft.netframework.referenceassemblies.net481.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_opentelemetry_exporter_prometheus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net481", - "version": "1.0.3", - "sha512": "sha512-7q2vMYIMeNF2TU1/z8ZStlyALlfQjPRa3eCLwTT+6ErueWvXZsKF6MkjPXU0vglvjCP/5iXxhTMPzvuWRKJ1Ew==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, - "nuget.microsoft.aspnetcore.app.ref.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_opentelemetry_resourcedetector_gcp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.ref", - "version": "7.0.17", - "sha512": "sha512-/WhhNj33VNbZJtVm79JuWAOgrkqCA+A7JceHYJ7MLQySzxGC96SrphHpaWjCv5gzPvPyJsUX4EV2MctIFWMc0A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, - "nuget.microsoft.aspnetcore.app.ref.v5.0.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_opentelemetry_sdk": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.ref", - "version": "5.0.0", - "sha512": "sha512-WUXyfm24FMcGI+nADe0wJqBnQcGmtqrjhbJN+W2M9RZOc4TtUJDmmvpQabHwRWYQNoLjTJn/825gs5UKksOMog==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "opentelemetry-sdk==1.25.0" } }, - "nuget.microsoft.netcore.app.v1.0.16": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_opentelemetry_semantic_conventions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app", - "version": "1.0.16", - "sha512": "sha512-BKKb2pT1E0j3PpRXOahEKoLYGCPecVWkvogMEQT+sHM1eZIdGTiDo10ZGeG7sZk3TJHt3VRvLOBk8QyrtzpyYw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, - "nuget.microsoft.netframework.referenceassemblies.net451.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_prometheus_client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net451", - "version": "1.0.3", - "sha512": "sha512-fS2Qwxx3JboJ2aUCknMGdM13SaYLsgurXehv+Lp5lnbl/lKwtH55S/uI3K7KRBH5CqGxLqBfWWJvAz/elS9ACA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "prometheus_client==0.20.0" } }, - "nuget.microsoft.netcore.app.v2.2.8": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_proto_plus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app", - "version": "2.2.8", - "sha512": "sha512-WZ0ojrXi2DZ66MWxds4jU7ZWUyMgKOQB7gyQ70ovrvbrhzu50XNUjnlfTT7ZpWoxKDGAfneDoJjTHoJk+Oa1RA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "proto-plus==1.22.3" } }, - "nuget.microsoft.netframework.referenceassemblies.net461.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_protobuf": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net461", - "version": "1.0.3", - "sha512": "sha512-txfcwV2rUr4Dxr0r2jU637Dsx4W9Wo1PxHI5oTJPRsSsGHWV2QLS75DGm7vJ2e7sl9BMZZn174/ro3SDO/oBxg==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "protobuf>=5.27.1,<6.0dev" } }, - "nuget.microsoft.netframework.referenceassemblies.net462.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_pyasn1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net462", - "version": "1.0.3", - "sha512": "sha512-HMn0QQmPYcJsVuKet9WA8IQbBweZvc7US88N39itSRqcn/1XOT/Kao1QiiykxU+vx8k7/zim11cVmKtunju4MA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "pyasn1==0.5.0" } }, - "nuget.microsoft.netframework.referenceassemblies.net48.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_pyasn1_modules": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net48", - "version": "1.0.3", - "sha512": "sha512-XWKgyeNadNcTQaIVvQB8BrdCNrEar6fo/de1OdQRZ9HFy0jcBSaM8IV5q64ZampsSnC8AlTsACaGZUuoFw41RA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "pyasn1-modules==0.3.0" } }, - "nuget.microsoft.netframework.referenceassemblies.net471.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_requests": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net471", - "version": "1.0.3", - "sha512": "sha512-Vxmc1FxJLU4hA0b2mcELn4O5S6P3AfxtlFHjg1Gw6oMaBPL8gMRt9XT+IODkzDWeJ9bX/yYN4EPiJMz9Zh/2hQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "requests==2.25.1" } }, - "nuget.microsoft.netcore.app.ref.v6.0.28": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_rsa": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.ref", - "version": "6.0.28", - "sha512": "sha512-mmtX/MfjTfwzU5Gd57m27azyB+29cdykscYNmtEhUZDn97DvRIgXRwha4PjLSwjFdnagLAd/87rbg/DGDzI78w==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "rsa==4.9" } }, - "nuget.microsoft.netcore.app.v2.0.9": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app", - "version": "2.0.9", - "sha512": "sha512-RA35OXXK2enpLyFQrBW6N5WxPQLGJ8cx4SVNPa0PRLEmPcIu1OmdiPzOlqaB++7ejGWY5O3o3CKkOgEgsHzDqA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "setuptools==44.1.1" } }, - "nuget.microsoft.netframework.referenceassemblies.net472.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_typing_extensions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net472", - "version": "1.0.3", - "sha512": "sha512-PvZKpFbtsxtJBi6hJyzt/iaK71qGdu9mNVpJT43+i1Wp23ym57YVuQI+BEnO/99K2pxPMEgYtz62n7yZFEgi2A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "typing-extensions==4.9.0" } }, - "nuget.microsoft.netframework.referenceassemblies.net47.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_urllib3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net47", - "version": "1.0.3", - "sha512": "sha512-x2ENtw+CyAOV9EO1V5okeMkPkR8LGWW8F6xG+ndxwEq3GMlNmDo0CDBZtI690PP/0jMHTwlPwyQTvYBhUpGiZA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "urllib3==1.26.18" } }, - "nuget.microsoft.netframework.referenceassemblies.net45.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_wheel": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net45", - "version": "1.0.3", - "sha512": "sha512-zPJ5Pqc6+cBg4ir33AWryA8CUxJJj68Cs1Cfo8plZt1HH3Q0B/EqVon6LRXw9b8dfQyLYMqTJJk2maXgLhGJIw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "wheel==0.38.1" } }, - "nuget.microsoft.netframework.referenceassemblies.net46.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_wrapt": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net46", - "version": "1.0.3", - "sha512": "sha512-2DUXmacjqNTXn5FE95qWE6bL22ae0m/0rL/SgK3aWsW6qClDzXVmo0kOLycCh6JV6i3dQU/KMuT2wtrT8EfZiA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "wrapt==1.16.0" } }, - "nuget.microsoft.netcore.app.ref.v7.0.17": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_zipp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.ref", - "version": "7.0.17", - "sha512": "sha512-sPK4r+HvhStfHd/eBJL9MPcjewU41RFCbPIEFau4kknDO7ayLcLw/rhgQeGkKdXQiYWm8smqeMPHP8SsCZj9RQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "zipp==3.17.0" } }, - "nuget.microsoft.netframework.referenceassemblies.net35.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_zope_event": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net35", - "version": "1.0.3", - "sha512": "sha512-l0U4pfjnh80q9nnMSy6h9OaaLt9289Qo2lOzYaoNXwz4BBUgx1FeQA/Bbz3hc1+CUvDpziG77O8i1DZ6bXIK+A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "zope.event==4.5.0" } }, - "nuget.microsoft.netcore.app.v1.1.13": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_312_zope_interface": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app", - "version": "1.1.13", - "sha512": "sha512-KkiJ9r8OprE+HzBNRBGGpvtBl2HwzoxCnu8NZaHV9h7XjCtGSdVKIna6LOFPqp98gqZ7HJ3AUE4zWCv5F7zyBQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "grpc_python_dependencies_312", + "requirement": "zope.interface==6.1" } }, - "nuget.microsoft.netcore.app.ref.v5.0.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.ref", - "version": "5.0.0", - "sha512": "sha512-bBp1LYzTBY58dMaCABHnp44CYBcBvW7RrfSsXENaS7iRq/yx39g+jhWdgUBZcJQBoF6AZeGbHhKV+JAoT3LHDw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "absl-py==1.4.0" } }, - "nuget.microsoft.aspnetcore.app.ref.v3.0.1": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_cachetools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app.ref", - "version": "3.0.1", - "sha512": "sha512-WlsoQyUrygTLB389vvp/ORtgQlVq8l2fhFxA9kQ9L2QiMqNgVqycOUZkauc26Knf2uJ34XtrDj2q6zM8lNnRwQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "cachetools==5.3.2" } }, - "nuget.microsoft.netcore.app.v2.1.30": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_certifi": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app", - "version": "2.1.30", - "sha512": "sha512-rjXfBeXZZOixeTIXi8F+HkfXSf+iauTQg0wO+CZbzqDOm5XPesc2GypYQ0otFOBbfbFP4awZrZwNa60LaYVvYQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "certifi==2023.7.22" } }, - "nuget.netstandard.library.v2.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_chardet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "netstandard.library", - "version": "2.0.3", - "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "chardet==3.0.4" } }, - "nuget.microsoft.aspnetcore.app.v2.2.8": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_charset_normalizer": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app", - "version": "2.2.8", - "sha512": "sha512-tN5tV4OSYlw2Rw2AJVV2K2irF6ijReRgm0sQMuwVyR1+D8d6rgiZggGs/6QCut9mo8xtcH12g9RJmbpQwDJbnA==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "charset-normalizer==3.3.2" } }, - "nuget.microsoft.netcore.app.ref.v8.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_coverage": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netcore.app.ref", - "version": "8.0.3", - "sha512": "sha512-AMA998IeSADApTbNIKNoHz+RI4pseVFASpkibhnjildJ3ACPyTyji/mnDAQXPCpvQfP83F6/yeYuAI+aYoSOgQ==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "coverage==4.5.4" } }, - "nuget.microsoft.netframework.referenceassemblies.net452.v1.0.3": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_cython": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.netframework.referenceassemblies.net452", - "version": "1.0.3", - "sha512": "sha512-Els1ywsbLD/XpEgQWV0yMpAOHk0Lecz4jWmOeLwzGSFJ3KFXB+57wKjX4rEJxqJf97CIFnUmcO+pvIz8LfTXvw==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "cython==3.0.0" } }, - "dotnet.targeting_packs": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_repo.bzl", - "ruleClassName": "_nuget_repo", + "grpc_python_dependencies_38_deprecated": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "repo_name": "dotnet.targeting_packs", - "packages": [ - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"NETStandard.Library\",\"name\":\"netstandard.library.v1.6.1\",\"sha512\":\"sha512-CXLcLbtJJeiW9ivOLlnU5IY5Mg7jitMBbc1IX71pNqDtCAc61e7yphLf8F38OQ85MP/5552HoGBw7rgSgnfL0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.6.1\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"NETStandard.Library\",\"name\":\"netstandard.library.v2.0.3\",\"sha512\":\"sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.Win32.Primitives|4.0.3.0\",\"System.AppContext|4.1.2.0\",\"System.Buffers|4.0.3.0\",\"System.Collections.Concurrent|4.0.11.0\",\"System.Collections.NonGeneric|4.0.3.0\",\"System.Collections.Specialized|4.0.3.0\",\"System.Collections|4.0.11.0\",\"System.ComponentModel.Composition|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.0.11.0\",\"System.ComponentModel.Primitives|4.1.2.0\",\"System.ComponentModel.TypeConverter|4.1.2.0\",\"System.ComponentModel|4.0.1.0\",\"System.Console|4.0.2.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.1.2.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.1.0\",\"System.Diagnostics.Debug|4.0.11.0\",\"System.Diagnostics.FileVersionInfo|4.0.2.0\",\"System.Diagnostics.Process|4.1.2.0\",\"System.Diagnostics.StackTrace|4.0.4.0\",\"System.Diagnostics.TextWriterTraceListener|4.0.2.0\",\"System.Diagnostics.Tools|4.0.1.0\",\"System.Diagnostics.TraceSource|4.0.2.0\",\"System.Diagnostics.Tracing|4.1.2.0\",\"System.Drawing.Primitives|4.0.2.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.0.11.0\",\"System.Globalization.Calendars|4.0.3.0\",\"System.Globalization.Extensions|4.0.3.0\",\"System.Globalization|4.0.11.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.3.0\",\"System.IO.Compression|4.1.3.0\",\"System.IO.FileSystem.DriveInfo|4.0.2.0\",\"System.IO.FileSystem.Primitives|4.0.3.0\",\"System.IO.FileSystem.Watcher|4.0.2.0\",\"System.IO.FileSystem|4.0.3.0\",\"System.IO.IsolatedStorage|4.0.2.0\",\"System.IO.MemoryMappedFiles|4.0.2.0\",\"System.IO.Pipes|4.0.2.0\",\"System.IO.UnmanagedMemoryStream|4.0.3.0\",\"System.IO|4.1.2.0\",\"System.Linq.Expressions|4.1.2.0\",\"System.Linq.Parallel|4.0.1.0\",\"System.Linq.Queryable|4.0.1.0\",\"System.Linq|4.1.2.0\",\"System.Memory|4.0.2.0\",\"System.Net.Http|4.1.2.0\",\"System.Net.NameResolution|4.0.2.0\",\"System.Net.NetworkInformation|4.1.2.0\",\"System.Net.Ping|4.0.2.0\",\"System.Net.Primitives|4.0.11.0\",\"System.Net.Requests|4.0.11.0\",\"System.Net.Security|4.0.2.0\",\"System.Net.Sockets|4.1.2.0\",\"System.Net.WebHeaderCollection|4.0.1.0\",\"System.Net.WebSockets.Client|4.0.2.0\",\"System.Net.WebSockets|4.0.2.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.5.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.0.11.0\",\"System.Reflection.DispatchProxy|4.0.5.0\",\"System.Reflection.Emit.ILGeneration|4.0.1.0\",\"System.Reflection.Emit.Lightweight|4.0.1.0\",\"System.Reflection.Emit|4.0.1.0\",\"System.Reflection.Extensions|4.0.1.0\",\"System.Reflection.Primitives|4.0.1.0\",\"System.Reflection|4.1.2.0\",\"System.Resources.Reader|4.0.2.0\",\"System.Resources.ResourceManager|4.0.1.0\",\"System.Resources.Writer|4.0.2.0\",\"System.Runtime.CompilerServices.VisualC|4.0.2.0\",\"System.Runtime.Extensions|4.1.2.0\",\"System.Runtime.Handles|4.0.1.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.2.0\",\"System.Runtime.InteropServices|4.1.2.0\",\"System.Runtime.Numerics|4.0.1.0\",\"System.Runtime.Serialization.Formatters|4.0.2.0\",\"System.Runtime.Serialization.Json|4.0.1.0\",\"System.Runtime.Serialization.Primitives|4.1.3.0\",\"System.Runtime.Serialization.Xml|4.1.3.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.1.2.0\",\"System.Security.Claims|4.0.3.0\",\"System.Security.Cryptography.Algorithms|4.2.2.0\",\"System.Security.Cryptography.Csp|4.0.2.0\",\"System.Security.Cryptography.Encoding|4.0.2.0\",\"System.Security.Cryptography.Primitives|4.0.2.0\",\"System.Security.Cryptography.X509Certificates|4.1.2.0\",\"System.Security.Principal|4.0.1.0\",\"System.Security.SecureString|4.0.2.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.Text.Encoding.Extensions|4.0.11.0\",\"System.Text.Encoding|4.0.11.0\",\"System.Text.RegularExpressions|4.1.1.0\",\"System.Threading.Overlapped|4.0.3.0\",\"System.Threading.Tasks.Extensions|4.2.1.0\",\"System.Threading.Tasks.Parallel|4.0.1.0\",\"System.Threading.Tasks|4.0.11.0\",\"System.Threading.Thread|4.0.2.0\",\"System.Threading.ThreadPool|4.0.12.0\",\"System.Threading.Timer|4.0.1.0\",\"System.Threading|4.0.11.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.2.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.1.1.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.0.11.0\",\"System.Xml.XPath.XDocument|4.0.3.0\",\"System.Xml.XPath|4.0.3.0\",\"System.Xml.XmlDocument|4.0.3.0\",\"System.Xml.XmlSerializer|4.0.11.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"NETStandard.Library.Ref\",\"name\":\"netstandard.library.ref.v2.1.0\",\"sha512\":\"sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Primitives|4.3.0\",\"System.AppContext|4.3.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"2.1.0\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net20\",\"name\":\"microsoft.netframework.referenceassemblies.net20.v1.0.3\",\"sha512\":\"sha512-M1vB2xSMJY0FdXNSUH4kjj04aTqWIOPUKeUUfaCoVA5JVw30XGO9ID7mUuBo+inSXLgmLvoMkSb3d98YEQwfyA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net35\",\"name\":\"microsoft.netframework.referenceassemblies.net35.v1.0.3\",\"sha512\":\"sha512-l0U4pfjnh80q9nnMSy6h9OaaLt9289Qo2lOzYaoNXwz4BBUgx1FeQA/Bbz3hc1+CUvDpziG77O8i1DZ6bXIK+A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net40\",\"name\":\"microsoft.netframework.referenceassemblies.net40.v1.0.3\",\"sha512\":\"sha512-vUXmwPxi7lY1DEmxnrnve/a4JgN/Z1XE6Raozcmlqrf2OZxs9smXBb3Q9y2dZ2lCPtVMyZBRM4jQPBXz04InpQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net45\",\"name\":\"microsoft.netframework.referenceassemblies.net45.v1.0.3\",\"sha512\":\"sha512-zPJ5Pqc6+cBg4ir33AWryA8CUxJJj68Cs1Cfo8plZt1HH3Q0B/EqVon6LRXw9b8dfQyLYMqTJJk2maXgLhGJIw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net451\",\"name\":\"microsoft.netframework.referenceassemblies.net451.v1.0.3\",\"sha512\":\"sha512-fS2Qwxx3JboJ2aUCknMGdM13SaYLsgurXehv+Lp5lnbl/lKwtH55S/uI3K7KRBH5CqGxLqBfWWJvAz/elS9ACA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net452\",\"name\":\"microsoft.netframework.referenceassemblies.net452.v1.0.3\",\"sha512\":\"sha512-Els1ywsbLD/XpEgQWV0yMpAOHk0Lecz4jWmOeLwzGSFJ3KFXB+57wKjX4rEJxqJf97CIFnUmcO+pvIz8LfTXvw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net46\",\"name\":\"microsoft.netframework.referenceassemblies.net46.v1.0.3\",\"sha512\":\"sha512-2DUXmacjqNTXn5FE95qWE6bL22ae0m/0rL/SgK3aWsW6qClDzXVmo0kOLycCh6JV6i3dQU/KMuT2wtrT8EfZiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net461\",\"name\":\"microsoft.netframework.referenceassemblies.net461.v1.0.3\",\"sha512\":\"sha512-txfcwV2rUr4Dxr0r2jU637Dsx4W9Wo1PxHI5oTJPRsSsGHWV2QLS75DGm7vJ2e7sl9BMZZn174/ro3SDO/oBxg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net462\",\"name\":\"microsoft.netframework.referenceassemblies.net462.v1.0.3\",\"sha512\":\"sha512-HMn0QQmPYcJsVuKet9WA8IQbBweZvc7US88N39itSRqcn/1XOT/Kao1QiiykxU+vx8k7/zim11cVmKtunju4MA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net47\",\"name\":\"microsoft.netframework.referenceassemblies.net47.v1.0.3\",\"sha512\":\"sha512-x2ENtw+CyAOV9EO1V5okeMkPkR8LGWW8F6xG+ndxwEq3GMlNmDo0CDBZtI690PP/0jMHTwlPwyQTvYBhUpGiZA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net471\",\"name\":\"microsoft.netframework.referenceassemblies.net471.v1.0.3\",\"sha512\":\"sha512-Vxmc1FxJLU4hA0b2mcELn4O5S6P3AfxtlFHjg1Gw6oMaBPL8gMRt9XT+IODkzDWeJ9bX/yYN4EPiJMz9Zh/2hQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net472\",\"name\":\"microsoft.netframework.referenceassemblies.net472.v1.0.3\",\"sha512\":\"sha512-PvZKpFbtsxtJBi6hJyzt/iaK71qGdu9mNVpJT43+i1Wp23ym57YVuQI+BEnO/99K2pxPMEgYtz62n7yZFEgi2A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net48\",\"name\":\"microsoft.netframework.referenceassemblies.net48.v1.0.3\",\"sha512\":\"sha512-XWKgyeNadNcTQaIVvQB8BrdCNrEar6fo/de1OdQRZ9HFy0jcBSaM8IV5q64ZampsSnC8AlTsACaGZUuoFw41RA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net481\",\"name\":\"microsoft.netframework.referenceassemblies.net481.v1.0.3\",\"sha512\":\"sha512-7q2vMYIMeNF2TU1/z8ZStlyALlfQjPRa3eCLwTT+6ErueWvXZsKF6MkjPXU0vglvjCP/5iXxhTMPzvuWRKJ1Ew==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v1.0.16\",\"sha512\":\"sha512-BKKb2pT1E0j3PpRXOahEKoLYGCPecVWkvogMEQT+sHM1eZIdGTiDo10ZGeG7sZk3TJHt3VRvLOBk8QyrtzpyYw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.16\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v1.1.13\",\"sha512\":\"sha512-KkiJ9r8OprE+HzBNRBGGpvtBl2HwzoxCnu8NZaHV9h7XjCtGSdVKIna6LOFPqp98gqZ7HJ3AUE4zWCv5F7zyBQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.1.13\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.0.9\",\"sha512\":\"sha512-RA35OXXK2enpLyFQrBW6N5WxPQLGJ8cx4SVNPa0PRLEmPcIu1OmdiPzOlqaB++7ejGWY5O3o3CKkOgEgsHzDqA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.0.9\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.1.30\",\"sha512\":\"sha512-rjXfBeXZZOixeTIXi8F+HkfXSf+iauTQg0wO+CZbzqDOm5XPesc2GypYQ0otFOBbfbFP4awZrZwNa60LaYVvYQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.1.30\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.2.8\",\"sha512\":\"sha512-WZ0ojrXi2DZ66MWxds4jU7ZWUyMgKOQB7gyQ70ovrvbrhzu50XNUjnlfTT7ZpWoxKDGAfneDoJjTHoJk+Oa1RA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.2.8\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|4.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.4.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|4.1.1.0\",\"System.AppContext|4.2.1.0\",\"System.Buffers|4.0.2.0\",\"System.Collections.Concurrent|4.0.14.0\",\"System.Collections.Immutable|1.2.4.0\",\"System.Collections.NonGeneric|4.1.1.0\",\"System.Collections.Specialized|4.1.1.0\",\"System.Collections|4.1.1.0\",\"System.ComponentModel.Annotations|4.3.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.1.1.0\",\"System.ComponentModel.Primitives|4.2.1.0\",\"System.ComponentModel.TypeConverter|4.2.1.0\",\"System.ComponentModel|4.0.3.0\",\"System.Configuration|4.0.0.0\",\"System.Console|4.1.1.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.2.1.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.3.0\",\"System.Diagnostics.Debug|4.1.1.0\",\"System.Diagnostics.DiagnosticSource|4.0.4.0\",\"System.Diagnostics.FileVersionInfo|4.0.3.0\",\"System.Diagnostics.Process|4.2.1.0\",\"System.Diagnostics.StackTrace|4.1.1.0\",\"System.Diagnostics.TextWriterTraceListener|4.1.1.0\",\"System.Diagnostics.Tools|4.1.1.0\",\"System.Diagnostics.TraceSource|4.1.1.0\",\"System.Diagnostics.Tracing|4.2.1.0\",\"System.Drawing.Primitives|4.2.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.1.1.0\",\"System.Globalization.Calendars|4.1.1.0\",\"System.Globalization.Extensions|4.1.1.0\",\"System.Globalization|4.1.1.0\",\"System.IO.Compression.Brotli|4.2.1.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.4.0\",\"System.IO.Compression|4.2.1.0\",\"System.IO.FileSystem.DriveInfo|4.1.1.0\",\"System.IO.FileSystem.Primitives|4.1.1.0\",\"System.IO.FileSystem.Watcher|4.1.1.0\",\"System.IO.FileSystem|4.1.1.0\",\"System.IO.IsolatedStorage|4.1.1.0\",\"System.IO.MemoryMappedFiles|4.1.1.0\",\"System.IO.Pipes|4.1.1.0\",\"System.IO.UnmanagedMemoryStream|4.1.1.0\",\"System.IO|4.2.1.0\",\"System.Linq.Expressions|4.2.1.0\",\"System.Linq.Parallel|4.0.3.0\",\"System.Linq.Queryable|4.0.3.0\",\"System.Linq|4.2.1.0\",\"System.Memory|4.2.0.0\",\"System.Net.Http|4.2.1.0\",\"System.Net.HttpListener|4.0.1.0\",\"System.Net.Mail|4.0.1.0\",\"System.Net.NameResolution|4.1.1.0\",\"System.Net.NetworkInformation|4.2.1.0\",\"System.Net.Ping|4.1.1.0\",\"System.Net.Primitives|4.1.1.0\",\"System.Net.Requests|4.1.1.0\",\"System.Net.Security|4.1.1.0\",\"System.Net.ServicePoint|4.0.1.0\",\"System.Net.Sockets|4.2.1.0\",\"System.Net.WebClient|4.0.1.0\",\"System.Net.WebHeaderCollection|4.1.1.0\",\"System.Net.WebProxy|4.0.1.0\",\"System.Net.WebSockets.Client|4.1.1.0\",\"System.Net.WebSockets|4.1.1.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.5.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.1.1.0\",\"System.Reflection.DispatchProxy|4.0.5.0\",\"System.Reflection.Emit.ILGeneration|4.1.0.0\",\"System.Reflection.Emit.Lightweight|4.1.0.0\",\"System.Reflection.Emit|4.1.1.0\",\"System.Reflection.Extensions|4.1.1.0\",\"System.Reflection.Metadata|1.4.4.0\",\"System.Reflection.Primitives|4.1.1.0\",\"System.Reflection.TypeExtensions|4.1.2.0\",\"System.Reflection|4.2.1.0\",\"System.Resources.Reader|4.1.1.0\",\"System.Resources.ResourceManager|4.1.1.0\",\"System.Resources.Writer|4.1.1.0\",\"System.Runtime.CompilerServices.Unsafe|4.0.5.0\",\"System.Runtime.CompilerServices.VisualC|4.1.1.0\",\"System.Runtime.Extensions|4.2.1.0\",\"System.Runtime.Handles|4.1.1.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.3.0\",\"System.Runtime.InteropServices.WindowsRuntime|4.0.3.0\",\"System.Runtime.InteropServices|4.2.1.0\",\"System.Runtime.Intrinsics|4.0.0.0\",\"System.Runtime.Loader|4.1.0.0\",\"System.Runtime.Numerics|4.1.1.0\",\"System.Runtime.Serialization.Formatters|4.0.3.0\",\"System.Runtime.Serialization.Json|4.0.4.0\",\"System.Runtime.Serialization.Primitives|4.2.1.0\",\"System.Runtime.Serialization.Xml|4.1.4.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.2.1.0\",\"System.Security.Claims|4.1.1.0\",\"System.Security.Cryptography.Algorithms|4.3.1.0\",\"System.Security.Cryptography.Csp|4.1.1.0\",\"System.Security.Cryptography.Encoding|4.1.1.0\",\"System.Security.Cryptography.Primitives|4.1.1.0\",\"System.Security.Cryptography.X509Certificates|4.2.1.0\",\"System.Security.Principal|4.1.1.0\",\"System.Security.SecureString|4.1.1.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|4.1.2.0\",\"System.Text.Encoding.Extensions|4.1.1.0\",\"System.Text.Encoding|4.1.1.0\",\"System.Text.Encodings.Web|4.0.4.0\",\"System.Text.Json|4.0.0.0\",\"System.Text.RegularExpressions|4.2.1.0\",\"System.Threading.Channels|4.0.1.0\",\"System.Threading.Overlapped|4.1.1.0\",\"System.Threading.Tasks.Dataflow|4.6.4.0\",\"System.Threading.Tasks.Extensions|4.3.0.0\",\"System.Threading.Tasks.Parallel|4.0.3.0\",\"System.Threading.Tasks|4.1.1.0\",\"System.Threading.Thread|4.1.1.0\",\"System.Threading.ThreadPool|4.1.1.0\",\"System.Threading.Timer|4.1.1.0\",\"System.Threading|4.1.1.0\",\"System.Transactions.Local|4.0.1.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|4.0.1.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.2.1.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.1.1.0\",\"System.Xml.XPath.XDocument|4.1.1.0\",\"System.Xml.XPath|4.1.1.0\",\"System.Xml.XmlDocument|4.1.1.0\",\"System.Xml.XmlSerializer|4.1.1.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v3.0.1\",\"sha512\":\"sha512-JPbWGLnLSKJoP+E4dqQd93QIQ4GqXXv/+iltuzd1hFXHEqf1Ie5oOK/x/Z/oJn6PeFTSvOghef32T4cBUi9C1A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"3.0.1\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|4.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.5.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|4.1.2.0\",\"System.AppContext|4.2.2.0\",\"System.Buffers|4.0.2.0\",\"System.Collections.Concurrent|4.0.15.0\",\"System.Collections.Immutable|1.2.5.0\",\"System.Collections.NonGeneric|4.1.2.0\",\"System.Collections.Specialized|4.1.2.0\",\"System.Collections|4.1.2.0\",\"System.ComponentModel.Annotations|4.3.1.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.1.2.0\",\"System.ComponentModel.Primitives|4.2.2.0\",\"System.ComponentModel.TypeConverter|4.2.2.0\",\"System.ComponentModel|4.0.4.0\",\"System.Configuration|4.0.0.0\",\"System.Console|4.1.2.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.2.2.0\",\"System.Data.DataSetExtensions|4.0.1.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.4.0\",\"System.Diagnostics.Debug|4.1.2.0\",\"System.Diagnostics.DiagnosticSource|4.0.5.0\",\"System.Diagnostics.FileVersionInfo|4.0.4.0\",\"System.Diagnostics.Process|4.2.2.0\",\"System.Diagnostics.StackTrace|4.1.2.0\",\"System.Diagnostics.TextWriterTraceListener|4.1.2.0\",\"System.Diagnostics.Tools|4.1.2.0\",\"System.Diagnostics.TraceSource|4.1.2.0\",\"System.Diagnostics.Tracing|4.2.2.0\",\"System.Drawing.Primitives|4.2.1.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.1.2.0\",\"System.Globalization.Calendars|4.1.2.0\",\"System.Globalization.Extensions|4.1.2.0\",\"System.Globalization|4.1.2.0\",\"System.IO.Compression.Brotli|4.2.2.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.5.0\",\"System.IO.Compression|4.2.2.0\",\"System.IO.FileSystem.DriveInfo|4.1.2.0\",\"System.IO.FileSystem.Primitives|4.1.2.0\",\"System.IO.FileSystem.Watcher|4.1.2.0\",\"System.IO.FileSystem|4.1.2.0\",\"System.IO.IsolatedStorage|4.1.2.0\",\"System.IO.MemoryMappedFiles|4.1.2.0\",\"System.IO.Pipes|4.1.2.0\",\"System.IO.UnmanagedMemoryStream|4.1.2.0\",\"System.IO|4.2.2.0\",\"System.Linq.Expressions|4.2.2.0\",\"System.Linq.Parallel|4.0.4.0\",\"System.Linq.Queryable|4.0.4.0\",\"System.Linq|4.2.2.0\",\"System.Memory|4.2.1.0\",\"System.Net.Http|4.2.2.0\",\"System.Net.HttpListener|4.0.2.0\",\"System.Net.Mail|4.0.2.0\",\"System.Net.NameResolution|4.1.2.0\",\"System.Net.NetworkInformation|4.2.2.0\",\"System.Net.Ping|4.1.2.0\",\"System.Net.Primitives|4.1.2.0\",\"System.Net.Requests|4.1.2.0\",\"System.Net.Security|4.1.2.0\",\"System.Net.ServicePoint|4.0.2.0\",\"System.Net.Sockets|4.2.2.0\",\"System.Net.WebClient|4.0.2.0\",\"System.Net.WebHeaderCollection|4.1.2.0\",\"System.Net.WebProxy|4.0.2.0\",\"System.Net.WebSockets.Client|4.1.2.0\",\"System.Net.WebSockets|4.1.2.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.6.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.1.2.0\",\"System.Reflection.DispatchProxy|4.0.6.0\",\"System.Reflection.Emit.ILGeneration|4.1.1.0\",\"System.Reflection.Emit.Lightweight|4.1.1.0\",\"System.Reflection.Emit|4.1.2.0\",\"System.Reflection.Extensions|4.1.2.0\",\"System.Reflection.Metadata|1.4.5.0\",\"System.Reflection.Primitives|4.1.2.0\",\"System.Reflection.TypeExtensions|4.1.2.0\",\"System.Reflection|4.2.2.0\",\"System.Resources.Reader|4.1.2.0\",\"System.Resources.ResourceManager|4.1.2.0\",\"System.Resources.Writer|4.1.2.0\",\"System.Runtime.CompilerServices.Unsafe|4.0.6.0\",\"System.Runtime.CompilerServices.VisualC|4.1.2.0\",\"System.Runtime.Extensions|4.2.2.0\",\"System.Runtime.Handles|4.1.2.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.4.0\",\"System.Runtime.InteropServices.WindowsRuntime|4.0.4.0\",\"System.Runtime.InteropServices|4.2.2.0\",\"System.Runtime.Intrinsics|4.0.1.0\",\"System.Runtime.Loader|4.1.1.0\",\"System.Runtime.Numerics|4.1.2.0\",\"System.Runtime.Serialization.Formatters|4.0.4.0\",\"System.Runtime.Serialization.Json|4.0.5.0\",\"System.Runtime.Serialization.Primitives|4.2.2.0\",\"System.Runtime.Serialization.Xml|4.1.5.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.2.2.0\",\"System.Security.Claims|4.1.2.0\",\"System.Security.Cryptography.Algorithms|4.3.2.0\",\"System.Security.Cryptography.Csp|4.1.2.0\",\"System.Security.Cryptography.Encoding|4.1.2.0\",\"System.Security.Cryptography.Primitives|4.1.2.0\",\"System.Security.Cryptography.X509Certificates|4.2.2.0\",\"System.Security.Principal|4.1.2.0\",\"System.Security.SecureString|4.1.2.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|4.1.3.0\",\"System.Text.Encoding.Extensions|4.1.2.0\",\"System.Text.Encoding|4.1.2.0\",\"System.Text.Encodings.Web|4.0.5.0\",\"System.Text.Json|4.0.1.0\",\"System.Text.RegularExpressions|4.2.2.0\",\"System.Threading.Channels|4.0.2.0\",\"System.Threading.Overlapped|4.1.2.0\",\"System.Threading.Tasks.Dataflow|4.6.5.0\",\"System.Threading.Tasks.Extensions|4.3.1.0\",\"System.Threading.Tasks.Parallel|4.0.4.0\",\"System.Threading.Tasks|4.1.2.0\",\"System.Threading.Thread|4.1.2.0\",\"System.Threading.ThreadPool|4.1.2.0\",\"System.Threading.Timer|4.1.2.0\",\"System.Threading|4.1.2.0\",\"System.Transactions.Local|4.0.2.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|4.0.2.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.2.2.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.1.2.0\",\"System.Xml.XPath.XDocument|4.1.2.0\",\"System.Xml.XPath|4.1.2.0\",\"System.Xml.XmlDocument|4.1.2.0\",\"System.Xml.XmlSerializer|4.1.2.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v3.1.0\",\"sha512\":\"sha512-cTXlQgzxZx5XsAIVw8tcdYhvPpcScA3vG3AQ/ScleqMn32SMBCIQqetoE0X0EqPSjW3S+hw/pRIUli0msjiJ9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"3.1.0\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|5.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.6.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|5.0.0.0\",\"System.AppContext|5.0.0.0\",\"System.Buffers|5.0.0.0\",\"System.Collections.Concurrent|5.0.0.0\",\"System.Collections.Immutable|5.0.0.0\",\"System.Collections.NonGeneric|5.0.0.0\",\"System.Collections.Specialized|5.0.0.0\",\"System.Collections|5.0.0.0\",\"System.ComponentModel.Annotations|5.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|5.0.0.0\",\"System.ComponentModel.Primitives|5.0.0.0\",\"System.ComponentModel.TypeConverter|5.0.0.0\",\"System.ComponentModel|5.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|5.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|5.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|5.0.0.0\",\"System.Diagnostics.Debug|5.0.0.0\",\"System.Diagnostics.DiagnosticSource|5.0.0.0\",\"System.Diagnostics.FileVersionInfo|5.0.0.0\",\"System.Diagnostics.Process|5.0.0.0\",\"System.Diagnostics.StackTrace|5.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|5.0.0.0\",\"System.Diagnostics.Tools|5.0.0.0\",\"System.Diagnostics.TraceSource|5.0.0.0\",\"System.Diagnostics.Tracing|5.0.0.0\",\"System.Drawing.Primitives|5.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|5.0.0.0\",\"System.Formats.Asn1|5.0.0.0\",\"System.Globalization.Calendars|5.0.0.0\",\"System.Globalization.Extensions|5.0.0.0\",\"System.Globalization|5.0.0.0\",\"System.IO.Compression.Brotli|5.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|5.0.0.0\",\"System.IO.Compression|5.0.0.0\",\"System.IO.FileSystem.DriveInfo|5.0.0.0\",\"System.IO.FileSystem.Primitives|5.0.0.0\",\"System.IO.FileSystem.Watcher|5.0.0.0\",\"System.IO.FileSystem|5.0.0.0\",\"System.IO.IsolatedStorage|5.0.0.0\",\"System.IO.MemoryMappedFiles|5.0.0.0\",\"System.IO.Pipes|5.0.0.0\",\"System.IO.UnmanagedMemoryStream|5.0.0.0\",\"System.IO|5.0.0.0\",\"System.Linq.Expressions|5.0.0.0\",\"System.Linq.Parallel|5.0.0.0\",\"System.Linq.Queryable|5.0.0.0\",\"System.Linq|5.0.0.0\",\"System.Memory|5.0.0.0\",\"System.Net.Http.Json|5.0.0.0\",\"System.Net.Http|5.0.0.0\",\"System.Net.HttpListener|5.0.0.0\",\"System.Net.Mail|5.0.0.0\",\"System.Net.NameResolution|5.0.0.0\",\"System.Net.NetworkInformation|5.0.0.0\",\"System.Net.Ping|5.0.0.0\",\"System.Net.Primitives|5.0.0.0\",\"System.Net.Requests|5.0.0.0\",\"System.Net.Security|5.0.0.0\",\"System.Net.ServicePoint|5.0.0.0\",\"System.Net.Sockets|5.0.0.0\",\"System.Net.WebClient|5.0.0.0\",\"System.Net.WebHeaderCollection|5.0.0.0\",\"System.Net.WebProxy|5.0.0.0\",\"System.Net.WebSockets.Client|5.0.0.0\",\"System.Net.WebSockets|5.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|5.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|5.0.0.0\",\"System.Reflection.DispatchProxy|5.0.0.0\",\"System.Reflection.Emit.ILGeneration|5.0.0.0\",\"System.Reflection.Emit.Lightweight|5.0.0.0\",\"System.Reflection.Emit|5.0.0.0\",\"System.Reflection.Extensions|5.0.0.0\",\"System.Reflection.Metadata|5.0.0.0\",\"System.Reflection.Primitives|5.0.0.0\",\"System.Reflection.TypeExtensions|5.0.0.0\",\"System.Reflection|5.0.0.0\",\"System.Resources.Reader|5.0.0.0\",\"System.Resources.ResourceManager|5.0.0.0\",\"System.Resources.Writer|5.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|5.0.0.0\",\"System.Runtime.CompilerServices.VisualC|5.0.0.0\",\"System.Runtime.Extensions|5.0.0.0\",\"System.Runtime.Handles|5.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|5.0.0.0\",\"System.Runtime.InteropServices|5.0.0.0\",\"System.Runtime.Intrinsics|5.0.0.0\",\"System.Runtime.Loader|5.0.0.0\",\"System.Runtime.Numerics|5.0.0.0\",\"System.Runtime.Serialization.Formatters|5.0.0.0\",\"System.Runtime.Serialization.Json|5.0.0.0\",\"System.Runtime.Serialization.Primitives|5.0.0.0\",\"System.Runtime.Serialization.Xml|5.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|5.0.0.0\",\"System.Security.Claims|5.0.0.0\",\"System.Security.Cryptography.Algorithms|5.0.0.0\",\"System.Security.Cryptography.Csp|5.0.0.0\",\"System.Security.Cryptography.Encoding|5.0.0.0\",\"System.Security.Cryptography.Primitives|5.0.0.0\",\"System.Security.Cryptography.X509Certificates|5.0.0.0\",\"System.Security.Principal|5.0.0.0\",\"System.Security.SecureString|5.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|5.0.0.0\",\"System.Text.Encoding.Extensions|5.0.0.0\",\"System.Text.Encoding|5.0.0.0\",\"System.Text.Encodings.Web|5.0.0.0\",\"System.Text.Json|5.0.0.0\",\"System.Text.RegularExpressions|5.0.0.0\",\"System.Threading.Channels|5.0.0.0\",\"System.Threading.Overlapped|5.0.0.0\",\"System.Threading.Tasks.Dataflow|5.0.0.0\",\"System.Threading.Tasks.Extensions|5.0.0.0\",\"System.Threading.Tasks.Parallel|5.0.0.0\",\"System.Threading.Tasks|5.0.0.0\",\"System.Threading.Thread|5.0.0.0\",\"System.Threading.ThreadPool|5.0.0.0\",\"System.Threading.Timer|5.0.0.0\",\"System.Threading|5.0.0.0\",\"System.Transactions.Local|5.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|5.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|5.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|5.0.0.0\",\"System.Xml.XPath.XDocument|5.0.0.0\",\"System.Xml.XPath|5.0.0.0\",\"System.Xml.XmlDocument|5.0.0.0\",\"System.Xml.XmlSerializer|5.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v5.0.0\",\"sha512\":\"sha512-bBp1LYzTBY58dMaCABHnp44CYBcBvW7RrfSsXENaS7iRq/yx39g+jhWdgUBZcJQBoF6AZeGbHhKV+JAoT3LHDw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"5.0.0\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|6.0.0.0\",\"Microsoft.VisualBasic.Core|11.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|6.0.0.0\",\"Microsoft.Win32.Registry|6.0.0.0\",\"System.AppContext|6.0.0.0\",\"System.Buffers|6.0.0.0\",\"System.Collections.Concurrent|6.0.0.0\",\"System.Collections.Immutable|6.0.0.0\",\"System.Collections.NonGeneric|6.0.0.0\",\"System.Collections.Specialized|6.0.0.0\",\"System.Collections|6.0.0.0\",\"System.ComponentModel.Annotations|6.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|6.0.0.0\",\"System.ComponentModel.Primitives|6.0.0.0\",\"System.ComponentModel.TypeConverter|6.0.0.0\",\"System.ComponentModel|6.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|6.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|6.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|6.0.0.0\",\"System.Diagnostics.Debug|6.0.0.0\",\"System.Diagnostics.DiagnosticSource|6.0.0.0\",\"System.Diagnostics.FileVersionInfo|6.0.0.0\",\"System.Diagnostics.Process|6.0.0.0\",\"System.Diagnostics.StackTrace|6.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|6.0.0.0\",\"System.Diagnostics.Tools|6.0.0.0\",\"System.Diagnostics.TraceSource|6.0.0.0\",\"System.Diagnostics.Tracing|6.0.0.0\",\"System.Drawing.Primitives|6.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|6.0.0.0\",\"System.Formats.Asn1|6.0.0.0\",\"System.Globalization.Calendars|6.0.0.0\",\"System.Globalization.Extensions|6.0.0.0\",\"System.Globalization|6.0.0.0\",\"System.IO.Compression.Brotli|6.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|6.0.0.0\",\"System.IO.Compression|6.0.0.0\",\"System.IO.FileSystem.AccessControl|6.0.0.0\",\"System.IO.FileSystem.DriveInfo|6.0.0.0\",\"System.IO.FileSystem.Primitives|6.0.0.0\",\"System.IO.FileSystem.Watcher|6.0.0.0\",\"System.IO.FileSystem|6.0.0.0\",\"System.IO.IsolatedStorage|6.0.0.0\",\"System.IO.MemoryMappedFiles|6.0.0.0\",\"System.IO.Pipes.AccessControl|6.0.0.0\",\"System.IO.Pipes|6.0.0.0\",\"System.IO.UnmanagedMemoryStream|6.0.0.0\",\"System.IO|6.0.0.0\",\"System.Linq.Expressions|6.0.0.0\",\"System.Linq.Parallel|6.0.0.0\",\"System.Linq.Queryable|6.0.0.0\",\"System.Linq|6.0.0.0\",\"System.Memory|6.0.0.0\",\"System.Net.Http.Json|6.0.0.0\",\"System.Net.Http|6.0.0.0\",\"System.Net.HttpListener|6.0.0.0\",\"System.Net.Mail|6.0.0.0\",\"System.Net.NameResolution|6.0.0.0\",\"System.Net.NetworkInformation|6.0.0.0\",\"System.Net.Ping|6.0.0.0\",\"System.Net.Primitives|6.0.0.0\",\"System.Net.Requests|6.0.0.0\",\"System.Net.Security|6.0.0.0\",\"System.Net.ServicePoint|6.0.0.0\",\"System.Net.Sockets|6.0.0.0\",\"System.Net.WebClient|6.0.0.0\",\"System.Net.WebHeaderCollection|6.0.0.0\",\"System.Net.WebProxy|6.0.0.0\",\"System.Net.WebSockets.Client|6.0.0.0\",\"System.Net.WebSockets|6.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|6.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|6.0.0.0\",\"System.Reflection.DispatchProxy|6.0.0.0\",\"System.Reflection.Emit.ILGeneration|6.0.0.0\",\"System.Reflection.Emit.Lightweight|6.0.0.0\",\"System.Reflection.Emit|6.0.0.0\",\"System.Reflection.Extensions|6.0.0.0\",\"System.Reflection.Metadata|6.0.0.0\",\"System.Reflection.Primitives|6.0.0.0\",\"System.Reflection.TypeExtensions|6.0.0.0\",\"System.Reflection|6.0.0.0\",\"System.Resources.Reader|6.0.0.0\",\"System.Resources.ResourceManager|6.0.0.0\",\"System.Resources.Writer|6.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|6.0.0.0\",\"System.Runtime.CompilerServices.VisualC|6.0.0.0\",\"System.Runtime.Extensions|6.0.0.0\",\"System.Runtime.Handles|6.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|6.0.0.0\",\"System.Runtime.InteropServices|6.0.0.0\",\"System.Runtime.Intrinsics|6.0.0.0\",\"System.Runtime.Loader|6.0.0.0\",\"System.Runtime.Numerics|6.0.0.0\",\"System.Runtime.Serialization.Formatters|6.0.0.0\",\"System.Runtime.Serialization.Json|6.0.0.0\",\"System.Runtime.Serialization.Primitives|6.0.0.0\",\"System.Runtime.Serialization.Xml|6.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|6.0.0.0\",\"System.Security.AccessControl|6.0.0.0\",\"System.Security.Claims|6.0.0.0\",\"System.Security.Cryptography.Algorithms|6.0.0.0\",\"System.Security.Cryptography.Cng|6.0.0.0\",\"System.Security.Cryptography.Csp|6.0.0.0\",\"System.Security.Cryptography.Encoding|6.0.0.0\",\"System.Security.Cryptography.OpenSsl|6.0.0.0\",\"System.Security.Cryptography.Primitives|6.0.0.0\",\"System.Security.Cryptography.X509Certificates|6.0.0.0\",\"System.Security.Principal.Windows|6.0.0.0\",\"System.Security.Principal|6.0.0.0\",\"System.Security.SecureString|6.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|6.0.0.0\",\"System.Text.Encoding.Extensions|6.0.0.0\",\"System.Text.Encoding|6.0.0.0\",\"System.Text.Encodings.Web|6.0.0.0\",\"System.Text.Json|6.0.0.0\",\"System.Text.RegularExpressions|6.0.0.0\",\"System.Threading.Channels|6.0.0.0\",\"System.Threading.Overlapped|6.0.0.0\",\"System.Threading.Tasks.Dataflow|6.0.0.0\",\"System.Threading.Tasks.Extensions|6.0.0.0\",\"System.Threading.Tasks.Parallel|6.0.0.0\",\"System.Threading.Tasks|6.0.0.0\",\"System.Threading.Thread|6.0.0.0\",\"System.Threading.ThreadPool|6.0.0.0\",\"System.Threading.Timer|6.0.0.0\",\"System.Threading|6.0.0.0\",\"System.Transactions.Local|6.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|6.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|6.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|6.0.0.0\",\"System.Xml.XPath.XDocument|6.0.0.0\",\"System.Xml.XPath|6.0.0.0\",\"System.Xml.XmlDocument|6.0.0.0\",\"System.Xml.XmlSerializer|6.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v6.0.28\",\"sha512\":\"sha512-mmtX/MfjTfwzU5Gd57m27azyB+29cdykscYNmtEhUZDn97DvRIgXRwha4PjLSwjFdnagLAd/87rbg/DGDzI78w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|7.0.0.0\",\"Microsoft.VisualBasic.Core|12.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|7.0.0.0\",\"Microsoft.Win32.Registry|7.0.0.0\",\"System.AppContext|7.0.0.0\",\"System.Buffers|7.0.0.0\",\"System.Collections.Concurrent|7.0.0.0\",\"System.Collections.Immutable|7.0.0.0\",\"System.Collections.NonGeneric|7.0.0.0\",\"System.Collections.Specialized|7.0.0.0\",\"System.Collections|7.0.0.0\",\"System.ComponentModel.Annotations|7.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|7.0.0.0\",\"System.ComponentModel.Primitives|7.0.0.0\",\"System.ComponentModel.TypeConverter|7.0.0.0\",\"System.ComponentModel|7.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|7.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|7.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|7.0.0.0\",\"System.Diagnostics.Debug|7.0.0.0\",\"System.Diagnostics.DiagnosticSource|7.0.0.0\",\"System.Diagnostics.FileVersionInfo|7.0.0.0\",\"System.Diagnostics.Process|7.0.0.0\",\"System.Diagnostics.StackTrace|7.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|7.0.0.0\",\"System.Diagnostics.Tools|7.0.0.0\",\"System.Diagnostics.TraceSource|7.0.0.0\",\"System.Diagnostics.Tracing|7.0.0.0\",\"System.Drawing.Primitives|7.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|7.0.0.0\",\"System.Formats.Asn1|7.0.0.0\",\"System.Formats.Tar|7.0.0.0\",\"System.Globalization.Calendars|7.0.0.0\",\"System.Globalization.Extensions|7.0.0.0\",\"System.Globalization|7.0.0.0\",\"System.IO.Compression.Brotli|7.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|7.0.0.0\",\"System.IO.Compression|7.0.0.0\",\"System.IO.FileSystem.AccessControl|7.0.0.0\",\"System.IO.FileSystem.DriveInfo|7.0.0.0\",\"System.IO.FileSystem.Primitives|7.0.0.0\",\"System.IO.FileSystem.Watcher|7.0.0.0\",\"System.IO.FileSystem|7.0.0.0\",\"System.IO.IsolatedStorage|7.0.0.0\",\"System.IO.MemoryMappedFiles|7.0.0.0\",\"System.IO.Pipes.AccessControl|7.0.0.0\",\"System.IO.Pipes|7.0.0.0\",\"System.IO.UnmanagedMemoryStream|7.0.0.0\",\"System.IO|7.0.0.0\",\"System.Linq.Expressions|7.0.0.0\",\"System.Linq.Parallel|7.0.0.0\",\"System.Linq.Queryable|7.0.0.0\",\"System.Linq|7.0.0.0\",\"System.Memory|7.0.0.0\",\"System.Net.Http.Json|7.0.0.0\",\"System.Net.Http|7.0.0.0\",\"System.Net.HttpListener|7.0.0.0\",\"System.Net.Mail|7.0.0.0\",\"System.Net.NameResolution|7.0.0.0\",\"System.Net.NetworkInformation|7.0.0.0\",\"System.Net.Ping|7.0.0.0\",\"System.Net.Primitives|7.0.0.0\",\"System.Net.Quic|7.0.0.0\",\"System.Net.Requests|7.0.0.0\",\"System.Net.Security|7.0.0.0\",\"System.Net.ServicePoint|7.0.0.0\",\"System.Net.Sockets|7.0.0.0\",\"System.Net.WebClient|7.0.0.0\",\"System.Net.WebHeaderCollection|7.0.0.0\",\"System.Net.WebProxy|7.0.0.0\",\"System.Net.WebSockets.Client|7.0.0.0\",\"System.Net.WebSockets|7.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|7.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|7.0.0.0\",\"System.Reflection.DispatchProxy|7.0.0.0\",\"System.Reflection.Emit.ILGeneration|7.0.0.0\",\"System.Reflection.Emit.Lightweight|7.0.0.0\",\"System.Reflection.Emit|7.0.0.0\",\"System.Reflection.Extensions|7.0.0.0\",\"System.Reflection.Metadata|7.0.0.0\",\"System.Reflection.Primitives|7.0.0.0\",\"System.Reflection.TypeExtensions|7.0.0.0\",\"System.Reflection|7.0.0.0\",\"System.Resources.Reader|7.0.0.0\",\"System.Resources.ResourceManager|7.0.0.0\",\"System.Resources.Writer|7.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|7.0.0.0\",\"System.Runtime.CompilerServices.VisualC|7.0.0.0\",\"System.Runtime.Extensions|7.0.0.0\",\"System.Runtime.Handles|7.0.0.0\",\"System.Runtime.InteropServices.JavaScript|7.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|7.0.0.0\",\"System.Runtime.InteropServices|7.0.0.0\",\"System.Runtime.Intrinsics|7.0.0.0\",\"System.Runtime.Loader|7.0.0.0\",\"System.Runtime.Numerics|7.0.0.0\",\"System.Runtime.Serialization.Formatters|7.0.0.0\",\"System.Runtime.Serialization.Json|7.0.0.0\",\"System.Runtime.Serialization.Primitives|7.0.0.0\",\"System.Runtime.Serialization.Xml|7.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|7.0.0.0\",\"System.Security.AccessControl|7.0.0.0\",\"System.Security.Claims|7.0.0.0\",\"System.Security.Cryptography.Algorithms|7.0.0.0\",\"System.Security.Cryptography.Cng|7.0.0.0\",\"System.Security.Cryptography.Csp|7.0.0.0\",\"System.Security.Cryptography.Encoding|7.0.0.0\",\"System.Security.Cryptography.OpenSsl|7.0.0.0\",\"System.Security.Cryptography.Primitives|7.0.0.0\",\"System.Security.Cryptography.X509Certificates|7.0.0.0\",\"System.Security.Cryptography|7.0.0.0\",\"System.Security.Principal.Windows|7.0.0.0\",\"System.Security.Principal|7.0.0.0\",\"System.Security.SecureString|7.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|7.0.0.0\",\"System.Text.Encoding.Extensions|7.0.0.0\",\"System.Text.Encoding|7.0.0.0\",\"System.Text.Encodings.Web|7.0.0.0\",\"System.Text.Json|7.0.0.0\",\"System.Text.RegularExpressions|7.0.0.0\",\"System.Threading.Channels|7.0.0.0\",\"System.Threading.Overlapped|7.0.0.0\",\"System.Threading.Tasks.Dataflow|7.0.0.0\",\"System.Threading.Tasks.Extensions|7.0.0.0\",\"System.Threading.Tasks.Parallel|7.0.0.0\",\"System.Threading.Tasks|7.0.0.0\",\"System.Threading.Thread|7.0.0.0\",\"System.Threading.ThreadPool|7.0.0.0\",\"System.Threading.Timer|7.0.0.0\",\"System.Threading|7.0.0.0\",\"System.Transactions.Local|7.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|7.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|7.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|7.0.0.0\",\"System.Xml.XPath.XDocument|7.0.0.0\",\"System.Xml.XPath|7.0.0.0\",\"System.Xml.XmlDocument|7.0.0.0\",\"System.Xml.XmlSerializer|7.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v7.0.17\",\"sha512\":\"sha512-sPK4r+HvhStfHd/eBJL9MPcjewU41RFCbPIEFau4kknDO7ayLcLw/rhgQeGkKdXQiYWm8smqeMPHP8SsCZj9RQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|8.0.0.0\",\"Microsoft.VisualBasic.Core|13.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|8.0.0.0\",\"Microsoft.Win32.Registry|8.0.0.0\",\"System.AppContext|8.0.0.0\",\"System.Buffers|8.0.0.0\",\"System.Collections.Concurrent|8.0.0.0\",\"System.Collections.Immutable|8.0.0.0\",\"System.Collections.NonGeneric|8.0.0.0\",\"System.Collections.Specialized|8.0.0.0\",\"System.Collections|8.0.0.0\",\"System.ComponentModel.Annotations|8.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|8.0.0.0\",\"System.ComponentModel.Primitives|8.0.0.0\",\"System.ComponentModel.TypeConverter|8.0.0.0\",\"System.ComponentModel|8.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|8.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|8.0.0.0\",\"System.Data.DataSetExtensions|8.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|8.0.0.0\",\"System.Diagnostics.Debug|8.0.0.0\",\"System.Diagnostics.DiagnosticSource|8.0.0.0\",\"System.Diagnostics.FileVersionInfo|8.0.0.0\",\"System.Diagnostics.Process|8.0.0.0\",\"System.Diagnostics.StackTrace|8.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|8.0.0.0\",\"System.Diagnostics.Tools|8.0.0.0\",\"System.Diagnostics.TraceSource|8.0.0.0\",\"System.Diagnostics.Tracing|8.0.0.0\",\"System.Drawing.Primitives|8.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|8.0.0.0\",\"System.Formats.Asn1|8.0.0.0\",\"System.Formats.Tar|8.0.0.0\",\"System.Globalization.Calendars|8.0.0.0\",\"System.Globalization.Extensions|8.0.0.0\",\"System.Globalization|8.0.0.0\",\"System.IO.Compression.Brotli|8.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|8.0.0.0\",\"System.IO.Compression|8.0.0.0\",\"System.IO.FileSystem.AccessControl|8.0.0.0\",\"System.IO.FileSystem.DriveInfo|8.0.0.0\",\"System.IO.FileSystem.Primitives|8.0.0.0\",\"System.IO.FileSystem.Watcher|8.0.0.0\",\"System.IO.FileSystem|8.0.0.0\",\"System.IO.IsolatedStorage|8.0.0.0\",\"System.IO.MemoryMappedFiles|8.0.0.0\",\"System.IO.Pipes.AccessControl|8.0.0.0\",\"System.IO.Pipes|8.0.0.0\",\"System.IO.UnmanagedMemoryStream|8.0.0.0\",\"System.IO|8.0.0.0\",\"System.Linq.Expressions|8.0.0.0\",\"System.Linq.Parallel|8.0.0.0\",\"System.Linq.Queryable|8.0.0.0\",\"System.Linq|8.0.0.0\",\"System.Memory|8.0.0.0\",\"System.Net.Http.Json|8.0.0.0\",\"System.Net.Http|8.0.0.0\",\"System.Net.HttpListener|8.0.0.0\",\"System.Net.Mail|8.0.0.0\",\"System.Net.NameResolution|8.0.0.0\",\"System.Net.NetworkInformation|8.0.0.0\",\"System.Net.Ping|8.0.0.0\",\"System.Net.Primitives|8.0.0.0\",\"System.Net.Quic|8.0.0.0\",\"System.Net.Requests|8.0.0.0\",\"System.Net.Security|8.0.0.0\",\"System.Net.ServicePoint|8.0.0.0\",\"System.Net.Sockets|8.0.0.0\",\"System.Net.WebClient|8.0.0.0\",\"System.Net.WebHeaderCollection|8.0.0.0\",\"System.Net.WebProxy|8.0.0.0\",\"System.Net.WebSockets.Client|8.0.0.0\",\"System.Net.WebSockets|8.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|8.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|8.0.0.0\",\"System.Reflection.DispatchProxy|8.0.0.0\",\"System.Reflection.Emit.ILGeneration|8.0.0.0\",\"System.Reflection.Emit.Lightweight|8.0.0.0\",\"System.Reflection.Emit|8.0.0.0\",\"System.Reflection.Extensions|8.0.0.0\",\"System.Reflection.Metadata|8.0.0.0\",\"System.Reflection.Primitives|8.0.0.0\",\"System.Reflection.TypeExtensions|8.0.0.0\",\"System.Reflection|8.0.0.0\",\"System.Resources.Reader|8.0.0.0\",\"System.Resources.ResourceManager|8.0.0.0\",\"System.Resources.Writer|8.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|8.0.0.0\",\"System.Runtime.CompilerServices.VisualC|8.0.0.0\",\"System.Runtime.Extensions|8.0.0.0\",\"System.Runtime.Handles|8.0.0.0\",\"System.Runtime.InteropServices.JavaScript|8.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|8.0.0.0\",\"System.Runtime.InteropServices|8.0.0.0\",\"System.Runtime.Intrinsics|8.0.0.0\",\"System.Runtime.Loader|8.0.0.0\",\"System.Runtime.Numerics|8.0.0.0\",\"System.Runtime.Serialization.Formatters|8.0.0.0\",\"System.Runtime.Serialization.Json|8.0.0.0\",\"System.Runtime.Serialization.Primitives|8.0.0.0\",\"System.Runtime.Serialization.Xml|8.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|8.0.0.0\",\"System.Security.AccessControl|8.0.0.0\",\"System.Security.Claims|8.0.0.0\",\"System.Security.Cryptography.Algorithms|8.0.0.0\",\"System.Security.Cryptography.Cng|8.0.0.0\",\"System.Security.Cryptography.Csp|8.0.0.0\",\"System.Security.Cryptography.Encoding|8.0.0.0\",\"System.Security.Cryptography.OpenSsl|8.0.0.0\",\"System.Security.Cryptography.Primitives|8.0.0.0\",\"System.Security.Cryptography.X509Certificates|8.0.0.0\",\"System.Security.Cryptography|8.0.0.0\",\"System.Security.Principal.Windows|8.0.0.0\",\"System.Security.Principal|8.0.0.0\",\"System.Security.SecureString|8.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|8.0.0.0\",\"System.Text.Encoding.Extensions|8.0.0.0\",\"System.Text.Encoding|8.0.0.0\",\"System.Text.Encodings.Web|8.0.0.0\",\"System.Text.Json|8.0.0.0\",\"System.Text.RegularExpressions|8.0.0.0\",\"System.Threading.Channels|8.0.0.0\",\"System.Threading.Overlapped|8.0.0.0\",\"System.Threading.Tasks.Dataflow|8.0.0.0\",\"System.Threading.Tasks.Extensions|8.0.0.0\",\"System.Threading.Tasks.Parallel|8.0.0.0\",\"System.Threading.Tasks|8.0.0.0\",\"System.Threading.Thread|8.0.0.0\",\"System.Threading.ThreadPool|8.0.0.0\",\"System.Threading.Timer|8.0.0.0\",\"System.Threading|8.0.0.0\",\"System.Transactions.Local|8.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|8.0.0.0\",\"System.Web.HttpUtility|8.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|8.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|8.0.0.0\",\"System.Xml.XPath.XDocument|8.0.0.0\",\"System.Xml.XPath|8.0.0.0\",\"System.Xml.XmlDocument|8.0.0.0\",\"System.Xml.XmlSerializer|8.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v8.0.3\",\"sha512\":\"sha512-AMA998IeSADApTbNIKNoHz+RI4pseVFASpkibhnjildJ3ACPyTyji/mnDAQXPCpvQfP83F6/yeYuAI+aYoSOgQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"8.0.3\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App\",\"name\":\"microsoft.aspnetcore.app.v2.1.34\",\"sha512\":\"sha512-SIOjTfqVrxUu6Ov6YTO2Szq4qZ/FWjX0O4pFPz+bV6BVC5PJCEfkSrGE26rxuGENVMCuU6nNehDrpa/7rqhk6Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.1.34\"}", - "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App\",\"name\":\"microsoft.aspnetcore.app.v2.2.8\",\"sha512\":\"sha512-tN5tV4OSYlw2Rw2AJVV2K2irF6ijReRgm0sQMuwVyR1+D8d6rgiZggGs/6QCut9mo8xtcH12g9RJmbpQwDJbnA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.2.8\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.0.0.0\",\"Microsoft.AspNetCore.Authentication|3.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.0.0.0\",\"Microsoft.AspNetCore.Authorization|3.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.0.0.0\",\"Microsoft.AspNetCore.Components.Server|3.0.0.0\",\"Microsoft.AspNetCore.Components.Web|3.0.0.0\",\"Microsoft.AspNetCore.Components|3.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.0.0.0\",\"Microsoft.AspNetCore.Cors|3.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Hosting|3.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Features|3.0.0.0\",\"Microsoft.AspNetCore.Http|3.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.0.0.0\",\"Microsoft.AspNetCore.Identity|3.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.0.0.0\",\"Microsoft.AspNetCore.Localization|3.0.0.0\",\"Microsoft.AspNetCore.Metadata|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0.0\",\"Microsoft.AspNetCore.Mvc|3.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.0.0.0\",\"Microsoft.AspNetCore.Razor|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.0.0.0\",\"Microsoft.AspNetCore.Rewrite|3.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Routing|3.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.0.0.0\",\"Microsoft.AspNetCore.Session|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0.0\",\"Microsoft.AspNetCore.SignalR|3.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.0.0.0\",\"Microsoft.AspNetCore.WebSockets|3.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.0.0.0\",\"Microsoft.AspNetCore|3.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Caching.Memory|3.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.0.0.0\",\"Microsoft.Extensions.Configuration.Json|3.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.0.0.0\",\"Microsoft.Extensions.Configuration|3.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0.0\",\"Microsoft.Extensions.DependencyInjection|3.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Hosting|3.0.0.0\",\"Microsoft.Extensions.Http|3.0.0.0\",\"Microsoft.Extensions.Identity.Core|3.0.0.0\",\"Microsoft.Extensions.Identity.Stores|3.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Localization|3.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.0.0.0\",\"Microsoft.Extensions.Logging.Console|3.0.0.0\",\"Microsoft.Extensions.Logging.Debug|3.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.0.0.0\",\"Microsoft.Extensions.Logging|3.0.0.0\",\"Microsoft.Extensions.ObjectPool|3.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.0.0.0\",\"Microsoft.Extensions.Options|3.0.0.0\",\"Microsoft.Extensions.Primitives|3.0.0.0\",\"Microsoft.Extensions.WebEncoders|3.0.0.0\",\"Microsoft.JSInterop|3.0.0.0\",\"Microsoft.Net.Http.Headers|3.0.0.0\",\"Microsoft.Win32.Registry|4.1.2.0\",\"System.Diagnostics.EventLog|4.0.1.0\",\"System.IO.Pipelines|4.0.1.0\",\"System.Security.AccessControl|4.1.1.0\",\"System.Security.Cryptography.Cng|4.3.2.0\",\"System.Security.Cryptography.Xml|4.0.2.0\",\"System.Security.Permissions|4.0.2.0\",\"System.Security.Principal.Windows|4.1.1.0\",\"System.Windows.Extensions|4.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v3.0.1\",\"sha512\":\"sha512-WlsoQyUrygTLB389vvp/ORtgQlVq8l2fhFxA9kQ9L2QiMqNgVqycOUZkauc26Knf2uJ34XtrDj2q6zM8lNnRwQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|4.6.0\",\"System.Diagnostics.EventLog|4.6.0\",\"System.IO.Pipelines|4.6.0\",\"System.Security.AccessControl|4.6.0\",\"System.Security.Cryptography.Cng|4.6.0\",\"System.Security.Cryptography.Xml|4.6.0\",\"System.Security.Permissions|4.6.0\",\"System.Security.Principal.Windows|4.6.0\",\"System.Windows.Extensions|4.6.0\",\"Microsoft.Extensions.Caching.Abstractions|3.0.0\",\"Microsoft.Extensions.Caching.Memory|3.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.0.0\",\"Microsoft.Extensions.Configuration|3.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.0.0\",\"Microsoft.Extensions.Configuration.Json|3.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0\",\"Microsoft.Extensions.DependencyInjection|3.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.0.0\",\"Microsoft.Extensions.Hosting|3.0.0\",\"Microsoft.Extensions.Http|3.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.0.0\",\"Microsoft.Extensions.Localization|3.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.0.0\",\"Microsoft.Extensions.Logging.Console|3.0.0\",\"Microsoft.Extensions.Logging.Debug|3.0.0\",\"Microsoft.Extensions.Logging|3.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.0.0\",\"Microsoft.Extensions.ObjectPool|3.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.0.0\",\"Microsoft.Extensions.Options|3.0.0\",\"Microsoft.Extensions.Primitives|3.0.0\",\"Microsoft.Extensions.WebEncoders|3.0.0\",\"Microsoft.JSInterop|3.0.0\",\"Microsoft.AspNetCore.Antiforgery|3.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.0.0\",\"Microsoft.AspNetCore.Authentication|3.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.0.0\",\"Microsoft.AspNetCore.Authorization|3.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.0.0\",\"Microsoft.AspNetCore.Components|3.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.0.0\",\"Microsoft.AspNetCore.Components.Server|3.0.0\",\"Microsoft.AspNetCore.Components.Web|3.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.0.0\",\"Microsoft.AspNetCore.Cors|3.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0\",\"Microsoft.AspNetCore.DataProtection|3.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0\",\"Microsoft.AspNetCore|3.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Hosting|3.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.0.0\",\"Microsoft.AspNetCore.Http|3.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.0.0\",\"Microsoft.AspNetCore.Http.Features|3.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.0.0\",\"Microsoft.AspNetCore.Identity|3.0.0\",\"Microsoft.AspNetCore.Localization|3.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.0.0\",\"Microsoft.AspNetCore.Metadata|3.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0\",\"Microsoft.AspNetCore.Mvc|3.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0\",\"Microsoft.AspNetCore.Razor|3.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.0.0\",\"Microsoft.AspNetCore.Rewrite|3.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Routing|3.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0\",\"Microsoft.AspNetCore.Session|3.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.0.0\",\"Microsoft.AspNetCore.SignalR|3.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.0.0\",\"Microsoft.AspNetCore.WebSockets|3.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.0.0\",\"Microsoft.Extensions.Identity.Core|3.0.0\",\"Microsoft.Extensions.Identity.Stores|3.0.0\",\"Microsoft.Net.Http.Headers|3.0.0\"],\"version\":\"3.0.1\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.1.0.0\",\"Microsoft.AspNetCore.Authentication|3.1.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.1.0.0\",\"Microsoft.AspNetCore.Authorization|3.1.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.1.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.1.0.0\",\"Microsoft.AspNetCore.Components.Server|3.1.0.0\",\"Microsoft.AspNetCore.Components.Web|3.1.0.0\",\"Microsoft.AspNetCore.Components|3.1.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.1.0.0\",\"Microsoft.AspNetCore.Cors|3.1.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.1.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.1.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.1.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Hosting|3.1.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.1.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.1.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Features|3.1.0.0\",\"Microsoft.AspNetCore.Http|3.1.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.1.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.1.0.0\",\"Microsoft.AspNetCore.Identity|3.1.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.1.0.0\",\"Microsoft.AspNetCore.Localization|3.1.0.0\",\"Microsoft.AspNetCore.Metadata|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0.0\",\"Microsoft.AspNetCore.Mvc|3.1.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.1.0.0\",\"Microsoft.AspNetCore.Razor|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.1.0.0\",\"Microsoft.AspNetCore.Rewrite|3.1.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Routing|3.1.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.1.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.1.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.1.0.0\",\"Microsoft.AspNetCore.Session|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0.0\",\"Microsoft.AspNetCore.SignalR|3.1.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.1.0.0\",\"Microsoft.AspNetCore.WebSockets|3.1.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.1.0.0\",\"Microsoft.AspNetCore|3.1.0.0\",\"Microsoft.Extensions.Caching.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Caching.Memory|3.1.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.1.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.1.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.1.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.1.0.0\",\"Microsoft.Extensions.Configuration.Json|3.1.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.1.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.1.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.1.0.0\",\"Microsoft.Extensions.Configuration|3.1.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0.0\",\"Microsoft.Extensions.DependencyInjection|3.1.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.1.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.1.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Hosting|3.1.0.0\",\"Microsoft.Extensions.Http|3.1.0.0\",\"Microsoft.Extensions.Identity.Core|3.1.0.0\",\"Microsoft.Extensions.Identity.Stores|3.1.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Localization|3.1.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.1.0.0\",\"Microsoft.Extensions.Logging.Console|3.1.0.0\",\"Microsoft.Extensions.Logging.Debug|3.1.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.1.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.1.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.1.0.0\",\"Microsoft.Extensions.Logging|3.1.0.0\",\"Microsoft.Extensions.ObjectPool|3.1.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.1.0.0\",\"Microsoft.Extensions.Options|3.1.0.0\",\"Microsoft.Extensions.Primitives|3.1.0.0\",\"Microsoft.Extensions.WebEncoders|3.1.0.0\",\"Microsoft.JSInterop|3.1.0.0\",\"Microsoft.Net.Http.Headers|3.1.0.0\",\"Microsoft.Win32.Registry|4.1.3.0\",\"System.Diagnostics.EventLog|4.0.2.0\",\"System.IO.Pipelines|4.0.2.0\",\"System.Security.AccessControl|4.1.1.0\",\"System.Security.Cryptography.Cng|4.3.3.0\",\"System.Security.Cryptography.Xml|4.0.3.0\",\"System.Security.Permissions|4.0.3.0\",\"System.Security.Principal.Windows|4.1.1.0\",\"System.Windows.Extensions|4.0.1.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v3.1.10\",\"sha512\":\"sha512-yojrAwINItqiOp1XYc50AakRLEnJTOLSgCHdWMECI09NB+25i2eL/gaVcGfC/1986bsGGa/Afd85tcpFsuUnSQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|4.7.0\",\"System.Diagnostics.EventLog|4.7.0\",\"System.IO.Pipelines|4.7.0\",\"System.Security.AccessControl|4.7.0\",\"System.Security.Cryptography.Cng|4.7.0\",\"System.Security.Cryptography.Xml|4.7.0\",\"System.Security.Permissions|4.7.0\",\"System.Security.Principal.Windows|4.7.0\",\"System.Windows.Extensions|4.7.0\",\"Microsoft.Extensions.Caching.Abstractions|3.1.0\",\"Microsoft.Extensions.Caching.Memory|3.1.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.1.0\",\"Microsoft.Extensions.Configuration.Binder|3.1.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.1.0\",\"Microsoft.Extensions.Configuration|3.1.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.1.0\",\"Microsoft.Extensions.Configuration.Ini|3.1.0\",\"Microsoft.Extensions.Configuration.Json|3.1.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.1.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.1.0\",\"Microsoft.Extensions.Configuration.Xml|3.1.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0\",\"Microsoft.Extensions.DependencyInjection|3.1.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.1.0\",\"Microsoft.Extensions.FileProviders.Composite|3.1.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.1.0\",\"Microsoft.Extensions.FileProviders.Physical|3.1.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.1.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.1.0\",\"Microsoft.Extensions.Hosting|3.1.0\",\"Microsoft.Extensions.Http|3.1.0\",\"Microsoft.Extensions.Localization.Abstractions|3.1.0\",\"Microsoft.Extensions.Localization|3.1.0\",\"Microsoft.Extensions.Logging.Abstractions|3.1.0\",\"Microsoft.Extensions.Logging.Configuration|3.1.0\",\"Microsoft.Extensions.Logging.Console|3.1.0\",\"Microsoft.Extensions.Logging.Debug|3.1.0\",\"Microsoft.Extensions.Logging|3.1.0\",\"Microsoft.Extensions.Logging.EventLog|3.1.0\",\"Microsoft.Extensions.Logging.EventSource|3.1.0\",\"Microsoft.Extensions.Logging.TraceSource|3.1.0\",\"Microsoft.Extensions.ObjectPool|3.1.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.1.0\",\"Microsoft.Extensions.Options|3.1.0\",\"Microsoft.Extensions.Primitives|3.1.0\",\"Microsoft.Extensions.WebEncoders|3.1.0\",\"Microsoft.JSInterop|3.1.0\",\"Microsoft.AspNetCore.Antiforgery|3.1.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.1.0\",\"Microsoft.AspNetCore.Authentication.Core|3.1.0\",\"Microsoft.AspNetCore.Authentication|3.1.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.1.0\",\"Microsoft.AspNetCore.Authorization|3.1.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.1.0\",\"Microsoft.AspNetCore.Components.Authorization|3.1.0\",\"Microsoft.AspNetCore.Components|3.1.0\",\"Microsoft.AspNetCore.Components.Forms|3.1.0\",\"Microsoft.AspNetCore.Components.Server|3.1.0\",\"Microsoft.AspNetCore.Components.Web|3.1.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.1.0\",\"Microsoft.AspNetCore.CookiePolicy|3.1.0\",\"Microsoft.AspNetCore.Cors|3.1.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.1.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0\",\"Microsoft.AspNetCore.DataProtection|3.1.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.1.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Diagnostics|3.1.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0\",\"Microsoft.AspNetCore|3.1.0\",\"Microsoft.AspNetCore.HostFiltering|3.1.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Hosting|3.1.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.1.0\",\"Microsoft.AspNetCore.Http.Connections|3.1.0\",\"Microsoft.AspNetCore.Http|3.1.0\",\"Microsoft.AspNetCore.Http.Extensions|3.1.0\",\"Microsoft.AspNetCore.Http.Features|3.1.0\",\"Microsoft.AspNetCore.HttpOverrides|3.1.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.1.0\",\"Microsoft.AspNetCore.Identity|3.1.0\",\"Microsoft.AspNetCore.Localization|3.1.0\",\"Microsoft.AspNetCore.Localization.Routing|3.1.0\",\"Microsoft.AspNetCore.Metadata|3.1.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0\",\"Microsoft.AspNetCore.Mvc.Core|3.1.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.1.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0\",\"Microsoft.AspNetCore.Mvc|3.1.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.1.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.1.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.1.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0\",\"Microsoft.AspNetCore.Razor|3.1.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.1.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0\",\"Microsoft.AspNetCore.ResponseCaching|3.1.0\",\"Microsoft.AspNetCore.ResponseCompression|3.1.0\",\"Microsoft.AspNetCore.Rewrite|3.1.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Routing|3.1.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.1.0\",\"Microsoft.AspNetCore.Server.IIS|3.1.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0\",\"Microsoft.AspNetCore.Session|3.1.0\",\"Microsoft.AspNetCore.SignalR.Common|3.1.0\",\"Microsoft.AspNetCore.SignalR.Core|3.1.0\",\"Microsoft.AspNetCore.SignalR|3.1.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0\",\"Microsoft.AspNetCore.StaticFiles|3.1.0\",\"Microsoft.AspNetCore.WebSockets|3.1.0\",\"Microsoft.AspNetCore.WebUtilities|3.1.0\",\"Microsoft.Extensions.Identity.Core|3.1.0\",\"Microsoft.Extensions.Identity.Stores|3.1.0\",\"Microsoft.Net.Http.Headers|3.1.0\"],\"version\":\"3.1.10\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|5.0.0.0\",\"Microsoft.AspNetCore.Authentication|5.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|5.0.0.0\",\"Microsoft.AspNetCore.Authorization|5.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|5.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|5.0.0.0\",\"Microsoft.AspNetCore.Components.Server|5.0.0.0\",\"Microsoft.AspNetCore.Components.Web|5.0.0.0\",\"Microsoft.AspNetCore.Components|5.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|5.0.0.0\",\"Microsoft.AspNetCore.Cors|5.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|5.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|5.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|5.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Hosting|5.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|5.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|5.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Features|5.0.0.0\",\"Microsoft.AspNetCore.Http|5.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|5.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|5.0.0.0\",\"Microsoft.AspNetCore.Identity|5.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|5.0.0.0\",\"Microsoft.AspNetCore.Localization|5.0.0.0\",\"Microsoft.AspNetCore.Metadata|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0.0\",\"Microsoft.AspNetCore.Mvc|5.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|5.0.0.0\",\"Microsoft.AspNetCore.Razor|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|5.0.0.0\",\"Microsoft.AspNetCore.Rewrite|5.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Routing|5.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|5.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|5.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|5.0.0.0\",\"Microsoft.AspNetCore.Session|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0.0\",\"Microsoft.AspNetCore.SignalR|5.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|5.0.0.0\",\"Microsoft.AspNetCore.WebSockets|5.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|5.0.0.0\",\"Microsoft.AspNetCore|5.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Caching.Memory|5.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|5.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|5.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|5.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|5.0.0.0\",\"Microsoft.Extensions.Configuration.Json|5.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|5.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|5.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|5.0.0.0\",\"Microsoft.Extensions.Configuration|5.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0.0\",\"Microsoft.Extensions.DependencyInjection|5.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|5.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|5.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Hosting|5.0.0.0\",\"Microsoft.Extensions.Http|5.0.0.0\",\"Microsoft.Extensions.Identity.Core|5.0.0.0\",\"Microsoft.Extensions.Identity.Stores|5.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Localization|5.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|5.0.0.0\",\"Microsoft.Extensions.Logging.Console|5.0.0.0\",\"Microsoft.Extensions.Logging.Debug|5.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|5.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|5.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|5.0.0.0\",\"Microsoft.Extensions.Logging|5.0.0.0\",\"Microsoft.Extensions.ObjectPool|5.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|5.0.0.0\",\"Microsoft.Extensions.Options|5.0.0.0\",\"Microsoft.Extensions.Primitives|5.0.0.0\",\"Microsoft.Extensions.WebEncoders|5.0.0.0\",\"Microsoft.JSInterop|5.0.0.0\",\"Microsoft.Net.Http.Headers|5.0.0.0\",\"Microsoft.Win32.Registry|5.0.0.0\",\"System.Diagnostics.EventLog|5.0.0.0\",\"System.IO.Pipelines|5.0.0.0\",\"System.Security.AccessControl|5.0.0.0\",\"System.Security.Cryptography.Cng|5.0.0.0\",\"System.Security.Cryptography.Xml|5.0.0.0\",\"System.Security.Permissions|5.0.0.0\",\"System.Security.Principal.Windows|5.0.0.0\",\"System.Windows.Extensions|5.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v5.0.0\",\"sha512\":\"sha512-WUXyfm24FMcGI+nADe0wJqBnQcGmtqrjhbJN+W2M9RZOc4TtUJDmmvpQabHwRWYQNoLjTJn/825gs5UKksOMog==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|5.0.0\",\"System.Diagnostics.EventLog|5.0.0\",\"System.IO.Pipelines|5.0.0\",\"System.Security.AccessControl|5.0.0\",\"System.Security.Cryptography.Cng|5.0.0\",\"System.Security.Cryptography.Xml|5.0.0\",\"System.Security.Permissions|5.0.0\",\"System.Security.Principal.Windows|5.0.0\",\"System.Windows.Extensions|5.0.0\",\"Microsoft.Extensions.Caching.Abstractions|5.0.0\",\"Microsoft.Extensions.Caching.Memory|5.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|5.0.0\",\"Microsoft.Extensions.Configuration.Binder|5.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|5.0.0\",\"Microsoft.Extensions.Configuration|5.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|5.0.0\",\"Microsoft.Extensions.Configuration.Ini|5.0.0\",\"Microsoft.Extensions.Configuration.Json|5.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|5.0.0\",\"Microsoft.Extensions.Configuration.Xml|5.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0\",\"Microsoft.Extensions.DependencyInjection|5.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|5.0.0\",\"Microsoft.Extensions.FileProviders.Composite|5.0.0\",\"Microsoft.Extensions.FileProviders.Physical|5.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|5.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|5.0.0\",\"Microsoft.Extensions.Hosting|5.0.0\",\"Microsoft.Extensions.Http|5.0.0\",\"Microsoft.Extensions.Logging.Abstractions|5.0.0\",\"Microsoft.Extensions.Logging.Configuration|5.0.0\",\"Microsoft.Extensions.Logging.Console|5.0.0\",\"Microsoft.Extensions.Logging.Debug|5.0.0\",\"Microsoft.Extensions.Logging|5.0.0\",\"Microsoft.Extensions.Logging.EventLog|5.0.0\",\"Microsoft.Extensions.Logging.EventSource|5.0.0\",\"Microsoft.Extensions.Logging.TraceSource|5.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|5.0.0\",\"Microsoft.Extensions.Options|5.0.0\",\"Microsoft.Extensions.Primitives|5.0.0\",\"Microsoft.AspNetCore.Antiforgery|5.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|5.0.0\",\"Microsoft.AspNetCore.Authentication.Core|5.0.0\",\"Microsoft.AspNetCore.Authentication|5.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|5.0.0\",\"Microsoft.AspNetCore.Authorization|5.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|5.0.0\",\"Microsoft.AspNetCore.Components.Authorization|5.0.0\",\"Microsoft.AspNetCore.Components|5.0.0\",\"Microsoft.AspNetCore.Components.Forms|5.0.0\",\"Microsoft.AspNetCore.Components.Server|5.0.0\",\"Microsoft.AspNetCore.Components.Web|5.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|5.0.0\",\"Microsoft.AspNetCore.CookiePolicy|5.0.0\",\"Microsoft.AspNetCore.Cors|5.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|5.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0\",\"Microsoft.AspNetCore.DataProtection|5.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|5.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Diagnostics|5.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0\",\"Microsoft.AspNetCore|5.0.0\",\"Microsoft.AspNetCore.HostFiltering|5.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Hosting|5.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|5.0.0\",\"Microsoft.AspNetCore.Http.Connections|5.0.0\",\"Microsoft.AspNetCore.Http|5.0.0\",\"Microsoft.AspNetCore.Http.Extensions|5.0.0\",\"Microsoft.AspNetCore.Http.Features|5.0.0\",\"Microsoft.AspNetCore.HttpOverrides|5.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|5.0.0\",\"Microsoft.AspNetCore.Identity|5.0.0\",\"Microsoft.AspNetCore.Localization|5.0.0\",\"Microsoft.AspNetCore.Localization.Routing|5.0.0\",\"Microsoft.AspNetCore.Metadata|5.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0\",\"Microsoft.AspNetCore.Mvc.Core|5.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|5.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0\",\"Microsoft.AspNetCore.Mvc|5.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|5.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|5.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|5.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0\",\"Microsoft.AspNetCore.Razor|5.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|5.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0\",\"Microsoft.AspNetCore.ResponseCaching|5.0.0\",\"Microsoft.AspNetCore.ResponseCompression|5.0.0\",\"Microsoft.AspNetCore.Rewrite|5.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Routing|5.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|5.0.0\",\"Microsoft.AspNetCore.Server.IIS|5.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0\",\"Microsoft.AspNetCore.Session|5.0.0\",\"Microsoft.AspNetCore.SignalR.Common|5.0.0\",\"Microsoft.AspNetCore.SignalR.Core|5.0.0\",\"Microsoft.AspNetCore.SignalR|5.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0\",\"Microsoft.AspNetCore.StaticFiles|5.0.0\",\"Microsoft.AspNetCore.WebSockets|5.0.0\",\"Microsoft.AspNetCore.WebUtilities|5.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|5.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|5.0.0\",\"Microsoft.Extensions.Identity.Core|5.0.0\",\"Microsoft.Extensions.Identity.Stores|5.0.0\",\"Microsoft.Extensions.Localization.Abstractions|5.0.0\",\"Microsoft.Extensions.Localization|5.0.0\",\"Microsoft.Extensions.ObjectPool|5.0.0\",\"Microsoft.Extensions.WebEncoders|5.0.0\",\"Microsoft.JSInterop|5.0.0\",\"Microsoft.Net.Http.Headers|5.0.0\"],\"version\":\"5.0.0\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|6.0.0.0\",\"Microsoft.AspNetCore.Authentication|6.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|6.0.0.0\",\"Microsoft.AspNetCore.Authorization|6.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|6.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|6.0.0.0\",\"Microsoft.AspNetCore.Components.Server|6.0.0.0\",\"Microsoft.AspNetCore.Components.Web|6.0.0.0\",\"Microsoft.AspNetCore.Components|6.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|6.0.0.0\",\"Microsoft.AspNetCore.Cors|6.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|6.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|6.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|6.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Hosting|6.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|6.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|6.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Features|6.0.0.0\",\"Microsoft.AspNetCore.Http.Results|6.0.0.0\",\"Microsoft.AspNetCore.Http|6.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|6.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|6.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|6.0.0.0\",\"Microsoft.AspNetCore.Identity|6.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|6.0.0.0\",\"Microsoft.AspNetCore.Localization|6.0.0.0\",\"Microsoft.AspNetCore.Metadata|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0.0\",\"Microsoft.AspNetCore.Mvc|6.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|6.0.0.0\",\"Microsoft.AspNetCore.Razor|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|6.0.0.0\",\"Microsoft.AspNetCore.Rewrite|6.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Routing|6.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|6.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|6.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|6.0.0.0\",\"Microsoft.AspNetCore.Session|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0.0\",\"Microsoft.AspNetCore.SignalR|6.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|6.0.0.0\",\"Microsoft.AspNetCore.WebSockets|6.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|6.0.0.0\",\"Microsoft.AspNetCore|6.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Caching.Memory|6.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|6.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|6.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|6.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|6.0.0.0\",\"Microsoft.Extensions.Configuration.Json|6.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|6.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|6.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|6.0.0.0\",\"Microsoft.Extensions.Configuration|6.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0.0\",\"Microsoft.Extensions.DependencyInjection|6.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0.0\",\"Microsoft.Extensions.Features|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|6.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|6.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Hosting|6.0.0.0\",\"Microsoft.Extensions.Http|6.0.0.0\",\"Microsoft.Extensions.Identity.Core|6.0.0.0\",\"Microsoft.Extensions.Identity.Stores|6.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Localization|6.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|6.0.0.0\",\"Microsoft.Extensions.Logging.Console|6.0.0.0\",\"Microsoft.Extensions.Logging.Debug|6.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|6.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|6.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|6.0.0.0\",\"Microsoft.Extensions.Logging|6.0.0.0\",\"Microsoft.Extensions.ObjectPool|6.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|6.0.0.0\",\"Microsoft.Extensions.Options|6.0.0.0\",\"Microsoft.Extensions.Primitives|6.0.0.0\",\"Microsoft.Extensions.WebEncoders|6.0.0.0\",\"Microsoft.JSInterop|6.0.0.0\",\"Microsoft.Net.Http.Headers|6.0.0.0\",\"System.Diagnostics.EventLog|6.0.0.0\",\"System.IO.Pipelines|6.0.0.0\",\"System.Security.Cryptography.Xml|6.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v6.0.28\",\"sha512\":\"sha512-w9TnQpG7AazEtx6qCo6YNpzgzS6sGbTCSCkTnojUFzTGC/pSPnmcZej9ZCJP/BUGfO8kDWisGTmYzlk/OzlGuA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|6.0.0\",\"Microsoft.Extensions.Caching.Memory|6.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|6.0.0\",\"Microsoft.Extensions.Configuration.Binder|6.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|6.0.0\",\"Microsoft.Extensions.Configuration|6.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|6.0.0\",\"Microsoft.Extensions.Configuration.Ini|6.0.0\",\"Microsoft.Extensions.Configuration.Json|6.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|6.0.0\",\"Microsoft.Extensions.Configuration.Xml|6.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0\",\"Microsoft.Extensions.DependencyInjection|6.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|6.0.0\",\"Microsoft.Extensions.FileProviders.Composite|6.0.0\",\"Microsoft.Extensions.FileProviders.Physical|6.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|6.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|6.0.0\",\"Microsoft.Extensions.Hosting|6.0.0\",\"Microsoft.Extensions.Http|6.0.0\",\"Microsoft.Extensions.Logging.Abstractions|6.0.0\",\"Microsoft.Extensions.Logging.Configuration|6.0.0\",\"Microsoft.Extensions.Logging.Console|6.0.0\",\"Microsoft.Extensions.Logging.Debug|6.0.0\",\"Microsoft.Extensions.Logging|6.0.0\",\"Microsoft.Extensions.Logging.EventLog|6.0.0\",\"Microsoft.Extensions.Logging.EventSource|6.0.0\",\"Microsoft.Extensions.Logging.TraceSource|6.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|6.0.0\",\"Microsoft.Extensions.Options|6.0.0\",\"Microsoft.Extensions.Primitives|6.0.0\",\"System.Diagnostics.EventLog|6.0.0\",\"System.IO.Pipelines|6.0.0\",\"System.Security.Cryptography.Xml|6.0.0\",\"Microsoft.AspNetCore.Antiforgery|6.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|6.0.0\",\"Microsoft.AspNetCore.Authentication.Core|6.0.0\",\"Microsoft.AspNetCore.Authentication|6.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|6.0.0\",\"Microsoft.AspNetCore.Authorization|6.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|6.0.0\",\"Microsoft.AspNetCore.Components.Authorization|6.0.0\",\"Microsoft.AspNetCore.Components|6.0.0\",\"Microsoft.AspNetCore.Components.Forms|6.0.0\",\"Microsoft.AspNetCore.Components.Server|6.0.0\",\"Microsoft.AspNetCore.Components.Web|6.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|6.0.0\",\"Microsoft.AspNetCore.CookiePolicy|6.0.0\",\"Microsoft.AspNetCore.Cors|6.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|6.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0\",\"Microsoft.AspNetCore.DataProtection|6.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|6.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Diagnostics|6.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0\",\"Microsoft.AspNetCore|6.0.0\",\"Microsoft.AspNetCore.HostFiltering|6.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Hosting|6.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|6.0.0\",\"Microsoft.AspNetCore.Http.Connections|6.0.0\",\"Microsoft.AspNetCore.Http|6.0.0\",\"Microsoft.AspNetCore.Http.Extensions|6.0.0\",\"Microsoft.AspNetCore.Http.Features|6.0.0\",\"Microsoft.AspNetCore.Http.Results|6.0.0\",\"Microsoft.AspNetCore.HttpLogging|6.0.0\",\"Microsoft.AspNetCore.HttpOverrides|6.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|6.0.0\",\"Microsoft.AspNetCore.Identity|6.0.0\",\"Microsoft.AspNetCore.Localization|6.0.0\",\"Microsoft.AspNetCore.Localization.Routing|6.0.0\",\"Microsoft.AspNetCore.Metadata|6.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0\",\"Microsoft.AspNetCore.Mvc.Core|6.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|6.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0\",\"Microsoft.AspNetCore.Mvc|6.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|6.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|6.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|6.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0\",\"Microsoft.AspNetCore.Razor|6.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|6.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0\",\"Microsoft.AspNetCore.ResponseCaching|6.0.0\",\"Microsoft.AspNetCore.ResponseCompression|6.0.0\",\"Microsoft.AspNetCore.Rewrite|6.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Routing|6.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|6.0.0\",\"Microsoft.AspNetCore.Server.IIS|6.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0\",\"Microsoft.AspNetCore.Session|6.0.0\",\"Microsoft.AspNetCore.SignalR.Common|6.0.0\",\"Microsoft.AspNetCore.SignalR.Core|6.0.0\",\"Microsoft.AspNetCore.SignalR|6.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0\",\"Microsoft.AspNetCore.StaticFiles|6.0.0\",\"Microsoft.AspNetCore.WebSockets|6.0.0\",\"Microsoft.AspNetCore.WebUtilities|6.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|6.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0\",\"Microsoft.Extensions.Features|6.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|6.0.0\",\"Microsoft.Extensions.Identity.Core|6.0.0\",\"Microsoft.Extensions.Identity.Stores|6.0.0\",\"Microsoft.Extensions.Localization.Abstractions|6.0.0\",\"Microsoft.Extensions.Localization|6.0.0\",\"Microsoft.Extensions.ObjectPool|6.0.0\",\"Microsoft.Extensions.WebEncoders|6.0.0\",\"Microsoft.JSInterop|6.0.0\",\"Microsoft.Net.Http.Headers|6.0.0\"],\"version\":\"6.0.28\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|7.0.0.0\",\"Microsoft.AspNetCore.Authentication|7.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|7.0.0.0\",\"Microsoft.AspNetCore.Authorization|7.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|7.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|7.0.0.0\",\"Microsoft.AspNetCore.Components.Server|7.0.0.0\",\"Microsoft.AspNetCore.Components.Web|7.0.0.0\",\"Microsoft.AspNetCore.Components|7.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|7.0.0.0\",\"Microsoft.AspNetCore.Cors|7.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|7.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|7.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|7.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Hosting|7.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|7.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|7.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Features|7.0.0.0\",\"Microsoft.AspNetCore.Http.Results|7.0.0.0\",\"Microsoft.AspNetCore.Http|7.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|7.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|7.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|7.0.0.0\",\"Microsoft.AspNetCore.Identity|7.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|7.0.0.0\",\"Microsoft.AspNetCore.Localization|7.0.0.0\",\"Microsoft.AspNetCore.Metadata|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0.0\",\"Microsoft.AspNetCore.Mvc|7.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|7.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|7.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|7.0.0.0\",\"Microsoft.AspNetCore.Razor|7.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|7.0.0.0\",\"Microsoft.AspNetCore.Rewrite|7.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Routing|7.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|7.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|7.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|7.0.0.0\",\"Microsoft.AspNetCore.Session|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0.0\",\"Microsoft.AspNetCore.SignalR|7.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|7.0.0.0\",\"Microsoft.AspNetCore.WebSockets|7.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|7.0.0.0\",\"Microsoft.AspNetCore|7.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Caching.Memory|7.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|7.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|7.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|7.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|7.0.0.0\",\"Microsoft.Extensions.Configuration.Json|7.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|7.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|7.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|7.0.0.0\",\"Microsoft.Extensions.Configuration|7.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0.0\",\"Microsoft.Extensions.DependencyInjection|7.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0.0\",\"Microsoft.Extensions.Features|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|7.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|7.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Hosting|7.0.0.0\",\"Microsoft.Extensions.Http|7.0.0.0\",\"Microsoft.Extensions.Identity.Core|7.0.0.0\",\"Microsoft.Extensions.Identity.Stores|7.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Localization|7.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|7.0.0.0\",\"Microsoft.Extensions.Logging.Console|7.0.0.0\",\"Microsoft.Extensions.Logging.Debug|7.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|7.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|7.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|7.0.0.0\",\"Microsoft.Extensions.Logging|7.0.0.0\",\"Microsoft.Extensions.ObjectPool|7.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|7.0.0.0\",\"Microsoft.Extensions.Options|7.0.0.0\",\"Microsoft.Extensions.Primitives|7.0.0.0\",\"Microsoft.Extensions.WebEncoders|7.0.0.0\",\"Microsoft.JSInterop|7.0.0.0\",\"Microsoft.Net.Http.Headers|7.0.0.0\",\"System.Diagnostics.EventLog|7.0.0.0\",\"System.IO.Pipelines|7.0.0.0\",\"System.Security.Cryptography.Xml|7.0.0.0\",\"System.Threading.RateLimiting|7.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v7.0.17\",\"sha512\":\"sha512-/WhhNj33VNbZJtVm79JuWAOgrkqCA+A7JceHYJ7MLQySzxGC96SrphHpaWjCv5gzPvPyJsUX4EV2MctIFWMc0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|7.0.0\",\"Microsoft.Extensions.Caching.Memory|7.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|7.0.0\",\"Microsoft.Extensions.Configuration.Binder|7.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|7.0.0\",\"Microsoft.Extensions.Configuration|7.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|7.0.0\",\"Microsoft.Extensions.Configuration.Ini|7.0.0\",\"Microsoft.Extensions.Configuration.Json|7.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|7.0.0\",\"Microsoft.Extensions.Configuration.Xml|7.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0\",\"Microsoft.Extensions.DependencyInjection|7.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|7.0.0\",\"Microsoft.Extensions.FileProviders.Composite|7.0.0\",\"Microsoft.Extensions.FileProviders.Physical|7.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|7.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|7.0.0\",\"Microsoft.Extensions.Hosting|7.0.0\",\"Microsoft.Extensions.Http|7.0.0\",\"Microsoft.Extensions.Logging.Abstractions|7.0.0\",\"Microsoft.Extensions.Logging.Configuration|7.0.0\",\"Microsoft.Extensions.Logging.Console|7.0.0\",\"Microsoft.Extensions.Logging.Debug|7.0.0\",\"Microsoft.Extensions.Logging|7.0.0\",\"Microsoft.Extensions.Logging.EventLog|7.0.0\",\"Microsoft.Extensions.Logging.EventSource|7.0.0\",\"Microsoft.Extensions.Logging.TraceSource|7.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|7.0.0\",\"Microsoft.Extensions.Options|7.0.0\",\"Microsoft.Extensions.Primitives|7.0.0\",\"System.Diagnostics.EventLog|7.0.0\",\"System.IO.Pipelines|7.0.0\",\"System.Security.Cryptography.Xml|7.0.0\",\"System.Threading.RateLimiting|7.0.0\",\"Microsoft.AspNetCore.Antiforgery|7.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|7.0.0\",\"Microsoft.AspNetCore.Authentication.Core|7.0.0\",\"Microsoft.AspNetCore.Authentication|7.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|7.0.0\",\"Microsoft.AspNetCore.Authorization|7.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|7.0.0\",\"Microsoft.AspNetCore.Components.Authorization|7.0.0\",\"Microsoft.AspNetCore.Components|7.0.0\",\"Microsoft.AspNetCore.Components.Forms|7.0.0\",\"Microsoft.AspNetCore.Components.Server|7.0.0\",\"Microsoft.AspNetCore.Components.Web|7.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|7.0.0\",\"Microsoft.AspNetCore.CookiePolicy|7.0.0\",\"Microsoft.AspNetCore.Cors|7.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|7.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0\",\"Microsoft.AspNetCore.DataProtection|7.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|7.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Diagnostics|7.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0\",\"Microsoft.AspNetCore|7.0.0\",\"Microsoft.AspNetCore.HostFiltering|7.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Hosting|7.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|7.0.0\",\"Microsoft.AspNetCore.Http.Connections|7.0.0\",\"Microsoft.AspNetCore.Http|7.0.0\",\"Microsoft.AspNetCore.Http.Extensions|7.0.0\",\"Microsoft.AspNetCore.Http.Features|7.0.0\",\"Microsoft.AspNetCore.Http.Results|7.0.0\",\"Microsoft.AspNetCore.HttpLogging|7.0.0\",\"Microsoft.AspNetCore.HttpOverrides|7.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|7.0.0\",\"Microsoft.AspNetCore.Identity|7.0.0\",\"Microsoft.AspNetCore.Localization|7.0.0\",\"Microsoft.AspNetCore.Localization.Routing|7.0.0\",\"Microsoft.AspNetCore.Metadata|7.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0\",\"Microsoft.AspNetCore.Mvc.Core|7.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|7.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0\",\"Microsoft.AspNetCore.Mvc|7.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|7.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|7.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|7.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0\",\"Microsoft.AspNetCore.OutputCaching|7.0.0\",\"Microsoft.AspNetCore.RateLimiting|7.0.0\",\"Microsoft.AspNetCore.Razor|7.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|7.0.0\",\"Microsoft.AspNetCore.RequestDecompression|7.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0\",\"Microsoft.AspNetCore.ResponseCaching|7.0.0\",\"Microsoft.AspNetCore.ResponseCompression|7.0.0\",\"Microsoft.AspNetCore.Rewrite|7.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Routing|7.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|7.0.0\",\"Microsoft.AspNetCore.Server.IIS|7.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0\",\"Microsoft.AspNetCore.Session|7.0.0\",\"Microsoft.AspNetCore.SignalR.Common|7.0.0\",\"Microsoft.AspNetCore.SignalR.Core|7.0.0\",\"Microsoft.AspNetCore.SignalR|7.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0\",\"Microsoft.AspNetCore.StaticFiles|7.0.0\",\"Microsoft.AspNetCore.WebSockets|7.0.0\",\"Microsoft.AspNetCore.WebUtilities|7.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|7.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0\",\"Microsoft.Extensions.Features|7.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|7.0.0\",\"Microsoft.Extensions.Identity.Core|7.0.0\",\"Microsoft.Extensions.Identity.Stores|7.0.0\",\"Microsoft.Extensions.Localization.Abstractions|7.0.0\",\"Microsoft.Extensions.Localization|7.0.0\",\"Microsoft.Extensions.ObjectPool|7.0.0\",\"Microsoft.Extensions.WebEncoders|7.0.0\",\"Microsoft.JSInterop|7.0.0\",\"Microsoft.Net.Http.Headers|7.0.0\"],\"version\":\"7.0.17\"}", - "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|8.0.0.0\",\"Microsoft.AspNetCore.Authentication|8.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|8.0.0.0\",\"Microsoft.AspNetCore.Authorization|8.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|8.0.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|8.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|8.0.0.0\",\"Microsoft.AspNetCore.Components.Server|8.0.0.0\",\"Microsoft.AspNetCore.Components.Web|8.0.0.0\",\"Microsoft.AspNetCore.Components|8.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|8.0.0.0\",\"Microsoft.AspNetCore.Cors|8.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|8.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|8.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|8.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Hosting|8.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|8.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|8.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Features|8.0.0.0\",\"Microsoft.AspNetCore.Http.Results|8.0.0.0\",\"Microsoft.AspNetCore.Http|8.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|8.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|8.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|8.0.0.0\",\"Microsoft.AspNetCore.Identity|8.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|8.0.0.0\",\"Microsoft.AspNetCore.Localization|8.0.0.0\",\"Microsoft.AspNetCore.Metadata|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0.0\",\"Microsoft.AspNetCore.Mvc|8.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|8.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|8.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|8.0.0.0\",\"Microsoft.AspNetCore.Razor|8.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|8.0.0.0\",\"Microsoft.AspNetCore.Rewrite|8.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Routing|8.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|8.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|8.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|8.0.0.0\",\"Microsoft.AspNetCore.Session|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0.0\",\"Microsoft.AspNetCore.SignalR|8.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|8.0.0.0\",\"Microsoft.AspNetCore.WebSockets|8.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|8.0.0.0\",\"Microsoft.AspNetCore|8.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Caching.Memory|8.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|8.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|8.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|8.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|8.0.0.0\",\"Microsoft.Extensions.Configuration.Json|8.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|8.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|8.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|8.0.0.0\",\"Microsoft.Extensions.Configuration|8.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0.0\",\"Microsoft.Extensions.DependencyInjection|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0.0\",\"Microsoft.Extensions.Diagnostics|8.0.0.0\",\"Microsoft.Extensions.Features|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|8.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|8.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Hosting|8.0.0.0\",\"Microsoft.Extensions.Http|8.0.0.0\",\"Microsoft.Extensions.Identity.Core|8.0.0.0\",\"Microsoft.Extensions.Identity.Stores|8.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Localization|8.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|8.0.0.0\",\"Microsoft.Extensions.Logging.Console|8.0.0.0\",\"Microsoft.Extensions.Logging.Debug|8.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|8.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|8.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|8.0.0.0\",\"Microsoft.Extensions.Logging|8.0.0.0\",\"Microsoft.Extensions.ObjectPool|8.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|8.0.0.0\",\"Microsoft.Extensions.Options|8.0.0.0\",\"Microsoft.Extensions.Primitives|8.0.0.0\",\"Microsoft.Extensions.WebEncoders|8.0.0.0\",\"Microsoft.JSInterop|8.0.0.0\",\"Microsoft.Net.Http.Headers|8.0.0.0\",\"System.Diagnostics.EventLog|8.0.0.0\",\"System.IO.Pipelines|8.0.0.0\",\"System.Security.Cryptography.Xml|8.0.0.0\",\"System.Threading.RateLimiting|8.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v8.0.3\",\"sha512\":\"sha512-63hpt6nuhCktaoYxAB2RgldBxYCQY6SQ/oJqWnsd3ooIcBgIBp8ksbuDyZctWypEi10P/kzlnXbNdslVwFLeDw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|8.0.0\",\"Microsoft.Extensions.Caching.Memory|8.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|8.0.0\",\"Microsoft.Extensions.Configuration.Binder|8.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|8.0.0\",\"Microsoft.Extensions.Configuration|8.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|8.0.0\",\"Microsoft.Extensions.Configuration.Ini|8.0.0\",\"Microsoft.Extensions.Configuration.Json|8.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|8.0.0\",\"Microsoft.Extensions.Configuration.Xml|8.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0\",\"Microsoft.Extensions.DependencyInjection|8.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|8.0.0\",\"Microsoft.Extensions.Diagnostics|8.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|8.0.0\",\"Microsoft.Extensions.FileProviders.Composite|8.0.0\",\"Microsoft.Extensions.FileProviders.Physical|8.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|8.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|8.0.0\",\"Microsoft.Extensions.Hosting|8.0.0\",\"Microsoft.Extensions.Http|8.0.0\",\"Microsoft.Extensions.Logging.Abstractions|8.0.0\",\"Microsoft.Extensions.Logging.Configuration|8.0.0\",\"Microsoft.Extensions.Logging.Console|8.0.0\",\"Microsoft.Extensions.Logging.Debug|8.0.0\",\"Microsoft.Extensions.Logging|8.0.0\",\"Microsoft.Extensions.Logging.EventLog|8.0.0\",\"Microsoft.Extensions.Logging.EventSource|8.0.0\",\"Microsoft.Extensions.Logging.TraceSource|8.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|8.0.0\",\"Microsoft.Extensions.Options|8.0.0\",\"Microsoft.Extensions.Primitives|8.0.0\",\"System.Diagnostics.EventLog|8.0.0\",\"System.IO.Pipelines|8.0.0\",\"System.Security.Cryptography.Xml|8.0.0\",\"System.Threading.RateLimiting|8.0.0\",\"Microsoft.AspNetCore.Antiforgery|8.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|8.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|8.0.0\",\"Microsoft.AspNetCore.Authentication.Core|8.0.0\",\"Microsoft.AspNetCore.Authentication|8.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|8.0.0\",\"Microsoft.AspNetCore.Authorization|8.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|8.0.0\",\"Microsoft.AspNetCore.Components.Authorization|8.0.0\",\"Microsoft.AspNetCore.Components|8.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|8.0.0\",\"Microsoft.AspNetCore.Components.Forms|8.0.0\",\"Microsoft.AspNetCore.Components.Server|8.0.0\",\"Microsoft.AspNetCore.Components.Web|8.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|8.0.0\",\"Microsoft.AspNetCore.CookiePolicy|8.0.0\",\"Microsoft.AspNetCore.Cors|8.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|8.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0\",\"Microsoft.AspNetCore.DataProtection|8.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|8.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Diagnostics|8.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0\",\"Microsoft.AspNetCore|8.0.0\",\"Microsoft.AspNetCore.HostFiltering|8.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Hosting|8.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|8.0.0\",\"Microsoft.AspNetCore.Http.Connections|8.0.0\",\"Microsoft.AspNetCore.Http|8.0.0\",\"Microsoft.AspNetCore.Http.Extensions|8.0.0\",\"Microsoft.AspNetCore.Http.Features|8.0.0\",\"Microsoft.AspNetCore.Http.Results|8.0.0\",\"Microsoft.AspNetCore.HttpLogging|8.0.0\",\"Microsoft.AspNetCore.HttpOverrides|8.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|8.0.0\",\"Microsoft.AspNetCore.Identity|8.0.0\",\"Microsoft.AspNetCore.Localization|8.0.0\",\"Microsoft.AspNetCore.Localization.Routing|8.0.0\",\"Microsoft.AspNetCore.Metadata|8.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0\",\"Microsoft.AspNetCore.Mvc.Core|8.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|8.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0\",\"Microsoft.AspNetCore.Mvc|8.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|8.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|8.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|8.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0\",\"Microsoft.AspNetCore.OutputCaching|8.0.0\",\"Microsoft.AspNetCore.RateLimiting|8.0.0\",\"Microsoft.AspNetCore.Razor|8.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|8.0.0\",\"Microsoft.AspNetCore.RequestDecompression|8.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0\",\"Microsoft.AspNetCore.ResponseCaching|8.0.0\",\"Microsoft.AspNetCore.ResponseCompression|8.0.0\",\"Microsoft.AspNetCore.Rewrite|8.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Routing|8.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|8.0.0\",\"Microsoft.AspNetCore.Server.IIS|8.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0\",\"Microsoft.AspNetCore.Session|8.0.0\",\"Microsoft.AspNetCore.SignalR.Common|8.0.0\",\"Microsoft.AspNetCore.SignalR.Core|8.0.0\",\"Microsoft.AspNetCore.SignalR|8.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0\",\"Microsoft.AspNetCore.StaticFiles|8.0.0\",\"Microsoft.AspNetCore.WebSockets|8.0.0\",\"Microsoft.AspNetCore.WebUtilities|8.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|8.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0\",\"Microsoft.Extensions.Features|8.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|8.0.0\",\"Microsoft.Extensions.Identity.Core|8.0.0\",\"Microsoft.Extensions.Identity.Stores|8.0.0\",\"Microsoft.Extensions.Localization.Abstractions|8.0.0\",\"Microsoft.Extensions.Localization|8.0.0\",\"Microsoft.Extensions.ObjectPool|8.0.0\",\"Microsoft.Extensions.WebEncoders|8.0.0\",\"Microsoft.JSInterop|8.0.0\",\"Microsoft.Net.Http.Headers|8.0.0\"],\"version\":\"8.0.3\"}" - ], - "targeting_pack_overrides": { - "netstandard.library": [], - "netstandard.library.ref": [ - "Microsoft.Win32.Primitives|4.3.0", - "System.AppContext|4.3.0", - "System.Collections|4.3.0", - "System.Collections.Concurrent|4.3.0", - "System.Collections.Immutable|1.4.0", - "System.Collections.NonGeneric|4.3.0", - "System.Collections.Specialized|4.3.0", - "System.ComponentModel|4.3.0", - "System.ComponentModel.EventBasedAsync|4.3.0", - "System.ComponentModel.Primitives|4.3.0", - "System.ComponentModel.TypeConverter|4.3.0", - "System.Console|4.3.0", - "System.Data.Common|4.3.0", - "System.Diagnostics.Contracts|4.3.0", - "System.Diagnostics.Debug|4.3.0", - "System.Diagnostics.FileVersionInfo|4.3.0", - "System.Diagnostics.Process|4.3.0", - "System.Diagnostics.StackTrace|4.3.0", - "System.Diagnostics.TextWriterTraceListener|4.3.0", - "System.Diagnostics.Tools|4.3.0", - "System.Diagnostics.TraceSource|4.3.0", - "System.Diagnostics.Tracing|4.3.0", - "System.Dynamic.Runtime|4.3.0", - "System.Globalization|4.3.0", - "System.Globalization.Calendars|4.3.0", - "System.Globalization.Extensions|4.3.0", - "System.IO|4.3.0", - "System.IO.Compression|4.3.0", - "System.IO.Compression.ZipFile|4.3.0", - "System.IO.FileSystem|4.3.0", - "System.IO.FileSystem.DriveInfo|4.3.0", - "System.IO.FileSystem.Primitives|4.3.0", - "System.IO.FileSystem.Watcher|4.3.0", - "System.IO.IsolatedStorage|4.3.0", - "System.IO.MemoryMappedFiles|4.3.0", - "System.IO.Pipes|4.3.0", - "System.IO.UnmanagedMemoryStream|4.3.0", - "System.Linq|4.3.0", - "System.Linq.Expressions|4.3.0", - "System.Linq.Queryable|4.3.0", - "System.Net.Http|4.3.0", - "System.Net.NameResolution|4.3.0", - "System.Net.Primitives|4.3.0", - "System.Net.Requests|4.3.0", - "System.Net.Security|4.3.0", - "System.Net.Sockets|4.3.0", - "System.Net.WebHeaderCollection|4.3.0", - "System.ObjectModel|4.3.0", - "System.Private.DataContractSerialization|4.3.0", - "System.Reflection|4.3.0", - "System.Reflection.Emit|4.3.0", - "System.Reflection.Emit.ILGeneration|4.3.0", - "System.Reflection.Emit.Lightweight|4.3.0", - "System.Reflection.Extensions|4.3.0", - "System.Reflection.Primitives|4.3.0", - "System.Reflection.TypeExtensions|4.3.0", - "System.Resources.ResourceManager|4.3.0", - "System.Runtime|4.3.0", - "System.Runtime.Extensions|4.3.0", - "System.Runtime.Handles|4.3.0", - "System.Runtime.InteropServices|4.3.0", - "System.Runtime.InteropServices.RuntimeInformation|4.3.0", - "System.Runtime.Loader|4.3.0", - "System.Runtime.Numerics|4.3.0", - "System.Runtime.Serialization.Formatters|4.3.0", - "System.Runtime.Serialization.Json|4.3.0", - "System.Runtime.Serialization.Primitives|4.3.0", - "System.Security.AccessControl|4.4.0", - "System.Security.Claims|4.3.0", - "System.Security.Cryptography.Algorithms|4.3.0", - "System.Security.Cryptography.Csp|4.3.0", - "System.Security.Cryptography.Encoding|4.3.0", - "System.Security.Cryptography.Primitives|4.3.0", - "System.Security.Cryptography.X509Certificates|4.3.0", - "System.Security.Cryptography.Xml|4.4.0", - "System.Security.Principal|4.3.0", - "System.Security.Principal.Windows|4.4.0", - "System.Text.Encoding|4.3.0", - "System.Text.Encoding.Extensions|4.3.0", - "System.Text.RegularExpressions|4.3.0", - "System.Threading|4.3.0", - "System.Threading.Overlapped|4.3.0", - "System.Threading.Tasks|4.3.0", - "System.Threading.Tasks.Extensions|4.3.0", - "System.Threading.Tasks.Parallel|4.3.0", - "System.Threading.Thread|4.3.0", - "System.Threading.ThreadPool|4.3.0", - "System.Threading.Timer|4.3.0", - "System.ValueTuple|4.3.0", - "System.Xml.ReaderWriter|4.3.0", - "System.Xml.XDocument|4.3.0", - "System.Xml.XmlDocument|4.3.0", - "System.Xml.XmlSerializer|4.3.0", - "System.Xml.XPath|4.3.0", - "System.Xml.XPath.XDocument|4.3.0" - ], - "microsoft.netframework.referenceassemblies.net20": [], - "microsoft.netframework.referenceassemblies.net35": [], - "microsoft.netframework.referenceassemblies.net40": [], - "microsoft.netframework.referenceassemblies.net45": [], - "microsoft.netframework.referenceassemblies.net451": [], - "microsoft.netframework.referenceassemblies.net452": [], - "microsoft.netframework.referenceassemblies.net46": [], - "microsoft.netframework.referenceassemblies.net461": [], - "microsoft.netframework.referenceassemblies.net462": [], - "microsoft.netframework.referenceassemblies.net47": [], - "microsoft.netframework.referenceassemblies.net471": [], - "microsoft.netframework.referenceassemblies.net472": [], - "microsoft.netframework.referenceassemblies.net48": [], - "microsoft.netframework.referenceassemblies.net481": [], - "microsoft.netcore.app": [], - "microsoft.netcore.app.ref": [ - "Microsoft.CSharp|4.4.0", - "Microsoft.Win32.Primitives|4.3.0", - "Microsoft.Win32.Registry|4.4.0", - "runtime.debian.8-x64.runtime.native.System|4.3.0", - "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.fedora.23-x64.runtime.native.System|4.3.0", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.fedora.24-x64.runtime.native.System|4.3.0", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.rhel.7-x64.runtime.native.System|4.3.0", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", - "System.AppContext|4.3.0", - "System.Buffers|4.4.0", - "System.Collections|4.3.0", - "System.Collections.Concurrent|4.3.0", - "System.Collections.Immutable|1.4.0", - "System.Collections.NonGeneric|4.3.0", - "System.Collections.Specialized|4.3.0", - "System.ComponentModel|4.3.0", - "System.ComponentModel.EventBasedAsync|4.3.0", - "System.ComponentModel.Primitives|4.3.0", - "System.ComponentModel.TypeConverter|4.3.0", - "System.Console|4.3.0", - "System.Data.Common|4.3.0", - "System.Diagnostics.Contracts|4.3.0", - "System.Diagnostics.Debug|4.3.0", - "System.Diagnostics.DiagnosticSource|4.4.0", - "System.Diagnostics.FileVersionInfo|4.3.0", - "System.Diagnostics.Process|4.3.0", - "System.Diagnostics.StackTrace|4.3.0", - "System.Diagnostics.TextWriterTraceListener|4.3.0", - "System.Diagnostics.Tools|4.3.0", - "System.Diagnostics.TraceSource|4.3.0", - "System.Diagnostics.Tracing|4.3.0", - "System.Dynamic.Runtime|4.3.0", - "System.Globalization|4.3.0", - "System.Globalization.Calendars|4.3.0", - "System.Globalization.Extensions|4.3.0", - "System.IO|4.3.0", - "System.IO.Compression|4.3.0", - "System.IO.Compression.ZipFile|4.3.0", - "System.IO.FileSystem|4.3.0", - "System.IO.FileSystem.AccessControl|4.4.0", - "System.IO.FileSystem.DriveInfo|4.3.0", - "System.IO.FileSystem.Primitives|4.3.0", - "System.IO.FileSystem.Watcher|4.3.0", - "System.IO.IsolatedStorage|4.3.0", - "System.IO.MemoryMappedFiles|4.3.0", - "System.IO.Pipes|4.3.0", - "System.IO.UnmanagedMemoryStream|4.3.0", - "System.Linq|4.3.0", - "System.Linq.Expressions|4.3.0", - "System.Linq.Queryable|4.3.0", - "System.Net.Http|4.3.0", - "System.Net.NameResolution|4.3.0", - "System.Net.Primitives|4.3.0", - "System.Net.Requests|4.3.0", - "System.Net.Security|4.3.0", - "System.Net.Sockets|4.3.0", - "System.Net.WebHeaderCollection|4.3.0", - "System.ObjectModel|4.3.0", - "System.Private.DataContractSerialization|4.3.0", - "System.Reflection|4.3.0", - "System.Reflection.Emit|4.3.0", - "System.Reflection.Emit.ILGeneration|4.3.0", - "System.Reflection.Emit.Lightweight|4.3.0", - "System.Reflection.Extensions|4.3.0", - "System.Reflection.Metadata|1.5.0", - "System.Reflection.Primitives|4.3.0", - "System.Reflection.TypeExtensions|4.3.0", - "System.Resources.ResourceManager|4.3.0", - "System.Runtime|4.3.0", - "System.Runtime.Extensions|4.3.0", - "System.Runtime.Handles|4.3.0", - "System.Runtime.InteropServices|4.3.0", - "System.Runtime.InteropServices.RuntimeInformation|4.3.0", - "System.Runtime.Loader|4.3.0", - "System.Runtime.Numerics|4.3.0", - "System.Runtime.Serialization.Formatters|4.3.0", - "System.Runtime.Serialization.Json|4.3.0", - "System.Runtime.Serialization.Primitives|4.3.0", - "System.Security.AccessControl|4.4.0", - "System.Security.Claims|4.3.0", - "System.Security.Cryptography.Algorithms|4.3.0", - "System.Security.Cryptography.Cng|4.4.0", - "System.Security.Cryptography.Csp|4.3.0", - "System.Security.Cryptography.Encoding|4.3.0", - "System.Security.Cryptography.OpenSsl|4.4.0", - "System.Security.Cryptography.Primitives|4.3.0", - "System.Security.Cryptography.X509Certificates|4.3.0", - "System.Security.Cryptography.Xml|4.4.0", - "System.Security.Principal|4.3.0", - "System.Security.Principal.Windows|4.4.0", - "System.Text.Encoding|4.3.0", - "System.Text.Encoding.Extensions|4.3.0", - "System.Text.RegularExpressions|4.3.0", - "System.Threading|4.3.0", - "System.Threading.Overlapped|4.3.0", - "System.Threading.Tasks|4.3.0", - "System.Threading.Tasks.Extensions|4.3.0", - "System.Threading.Tasks.Parallel|4.3.0", - "System.Threading.Thread|4.3.0", - "System.Threading.ThreadPool|4.3.0", - "System.Threading.Timer|4.3.0", - "System.ValueTuple|4.3.0", - "System.Xml.ReaderWriter|4.3.0", - "System.Xml.XDocument|4.3.0", - "System.Xml.XmlDocument|4.3.0", - "System.Xml.XmlSerializer|4.3.0", - "System.Xml.XPath|4.3.0", - "System.Xml.XPath.XDocument|4.3.0" - ], - "microsoft.aspnetcore.app": [], - "microsoft.aspnetcore.app.ref": [ - "Microsoft.Extensions.Caching.Abstractions|8.0.0", - "Microsoft.Extensions.Caching.Memory|8.0.0", - "Microsoft.Extensions.Configuration.Abstractions|8.0.0", - "Microsoft.Extensions.Configuration.Binder|8.0.0", - "Microsoft.Extensions.Configuration.CommandLine|8.0.0", - "Microsoft.Extensions.Configuration|8.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions|8.0.0", - "Microsoft.Extensions.Configuration.Ini|8.0.0", - "Microsoft.Extensions.Configuration.Json|8.0.0", - "Microsoft.Extensions.Configuration.UserSecrets|8.0.0", - "Microsoft.Extensions.Configuration.Xml|8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0", - "Microsoft.Extensions.DependencyInjection|8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions|8.0.0", - "Microsoft.Extensions.Diagnostics|8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions|8.0.0", - "Microsoft.Extensions.FileProviders.Composite|8.0.0", - "Microsoft.Extensions.FileProviders.Physical|8.0.0", - "Microsoft.Extensions.FileSystemGlobbing|8.0.0", - "Microsoft.Extensions.Hosting.Abstractions|8.0.0", - "Microsoft.Extensions.Hosting|8.0.0", - "Microsoft.Extensions.Http|8.0.0", - "Microsoft.Extensions.Logging.Abstractions|8.0.0", - "Microsoft.Extensions.Logging.Configuration|8.0.0", - "Microsoft.Extensions.Logging.Console|8.0.0", - "Microsoft.Extensions.Logging.Debug|8.0.0", - "Microsoft.Extensions.Logging|8.0.0", - "Microsoft.Extensions.Logging.EventLog|8.0.0", - "Microsoft.Extensions.Logging.EventSource|8.0.0", - "Microsoft.Extensions.Logging.TraceSource|8.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0", - "Microsoft.Extensions.Options.DataAnnotations|8.0.0", - "Microsoft.Extensions.Options|8.0.0", - "Microsoft.Extensions.Primitives|8.0.0", - "System.Diagnostics.EventLog|8.0.0", - "System.IO.Pipelines|8.0.0", - "System.Security.Cryptography.Xml|8.0.0", - "System.Threading.RateLimiting|8.0.0", - "Microsoft.AspNetCore.Antiforgery|8.0.0", - "Microsoft.AspNetCore.Authentication.Abstractions|8.0.0", - "Microsoft.AspNetCore.Authentication.BearerToken|8.0.0", - "Microsoft.AspNetCore.Authentication.Cookies|8.0.0", - "Microsoft.AspNetCore.Authentication.Core|8.0.0", - "Microsoft.AspNetCore.Authentication|8.0.0", - "Microsoft.AspNetCore.Authentication.OAuth|8.0.0", - "Microsoft.AspNetCore.Authorization|8.0.0", - "Microsoft.AspNetCore.Authorization.Policy|8.0.0", - "Microsoft.AspNetCore.Components.Authorization|8.0.0", - "Microsoft.AspNetCore.Components|8.0.0", - "Microsoft.AspNetCore.Components.Endpoints|8.0.0", - "Microsoft.AspNetCore.Components.Forms|8.0.0", - "Microsoft.AspNetCore.Components.Server|8.0.0", - "Microsoft.AspNetCore.Components.Web|8.0.0", - "Microsoft.AspNetCore.Connections.Abstractions|8.0.0", - "Microsoft.AspNetCore.CookiePolicy|8.0.0", - "Microsoft.AspNetCore.Cors|8.0.0", - "Microsoft.AspNetCore.Cryptography.Internal|8.0.0", - "Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0", - "Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0", - "Microsoft.AspNetCore.DataProtection|8.0.0", - "Microsoft.AspNetCore.DataProtection.Extensions|8.0.0", - "Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0", - "Microsoft.AspNetCore.Diagnostics|8.0.0", - "Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0", - "Microsoft.AspNetCore|8.0.0", - "Microsoft.AspNetCore.HostFiltering|8.0.0", - "Microsoft.AspNetCore.Hosting.Abstractions|8.0.0", - "Microsoft.AspNetCore.Hosting|8.0.0", - "Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0", - "Microsoft.AspNetCore.Html.Abstractions|8.0.0", - "Microsoft.AspNetCore.Http.Abstractions|8.0.0", - "Microsoft.AspNetCore.Http.Connections.Common|8.0.0", - "Microsoft.AspNetCore.Http.Connections|8.0.0", - "Microsoft.AspNetCore.Http|8.0.0", - "Microsoft.AspNetCore.Http.Extensions|8.0.0", - "Microsoft.AspNetCore.Http.Features|8.0.0", - "Microsoft.AspNetCore.Http.Results|8.0.0", - "Microsoft.AspNetCore.HttpLogging|8.0.0", - "Microsoft.AspNetCore.HttpOverrides|8.0.0", - "Microsoft.AspNetCore.HttpsPolicy|8.0.0", - "Microsoft.AspNetCore.Identity|8.0.0", - "Microsoft.AspNetCore.Localization|8.0.0", - "Microsoft.AspNetCore.Localization.Routing|8.0.0", - "Microsoft.AspNetCore.Metadata|8.0.0", - "Microsoft.AspNetCore.Mvc.Abstractions|8.0.0", - "Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0", - "Microsoft.AspNetCore.Mvc.Core|8.0.0", - "Microsoft.AspNetCore.Mvc.Cors|8.0.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0", - "Microsoft.AspNetCore.Mvc|8.0.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0", - "Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0", - "Microsoft.AspNetCore.Mvc.Localization|8.0.0", - "Microsoft.AspNetCore.Mvc.Razor|8.0.0", - "Microsoft.AspNetCore.Mvc.RazorPages|8.0.0", - "Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0", - "Microsoft.AspNetCore.OutputCaching|8.0.0", - "Microsoft.AspNetCore.RateLimiting|8.0.0", - "Microsoft.AspNetCore.Razor|8.0.0", - "Microsoft.AspNetCore.Razor.Runtime|8.0.0", - "Microsoft.AspNetCore.RequestDecompression|8.0.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0", - "Microsoft.AspNetCore.ResponseCaching|8.0.0", - "Microsoft.AspNetCore.ResponseCompression|8.0.0", - "Microsoft.AspNetCore.Rewrite|8.0.0", - "Microsoft.AspNetCore.Routing.Abstractions|8.0.0", - "Microsoft.AspNetCore.Routing|8.0.0", - "Microsoft.AspNetCore.Server.HttpSys|8.0.0", - "Microsoft.AspNetCore.Server.IIS|8.0.0", - "Microsoft.AspNetCore.Server.IISIntegration|8.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0", - "Microsoft.AspNetCore.Server.Kestrel|8.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0", - "Microsoft.AspNetCore.Session|8.0.0", - "Microsoft.AspNetCore.SignalR.Common|8.0.0", - "Microsoft.AspNetCore.SignalR.Core|8.0.0", - "Microsoft.AspNetCore.SignalR|8.0.0", - "Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0", - "Microsoft.AspNetCore.StaticFiles|8.0.0", - "Microsoft.AspNetCore.WebSockets|8.0.0", - "Microsoft.AspNetCore.WebUtilities|8.0.0", - "Microsoft.Extensions.Configuration.KeyPerFile|8.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0", - "Microsoft.Extensions.Features|8.0.0", - "Microsoft.Extensions.FileProviders.Embedded|8.0.0", - "Microsoft.Extensions.Identity.Core|8.0.0", - "Microsoft.Extensions.Identity.Stores|8.0.0", - "Microsoft.Extensions.Localization.Abstractions|8.0.0", - "Microsoft.Extensions.Localization|8.0.0", - "Microsoft.Extensions.ObjectPool|8.0.0", - "Microsoft.Extensions.WebEncoders|8.0.0", - "Microsoft.JSInterop|8.0.0", - "Microsoft.Net.Http.Headers|8.0.0" - ] - }, - "framework_list": { - "netstandard.library": [], - "netstandard.library.ref": [ - "Microsoft.Win32.Primitives|4.0.3.0", - "System.AppContext|4.1.2.0", - "System.Buffers|4.0.3.0", - "System.Collections.Concurrent|4.0.11.0", - "System.Collections.NonGeneric|4.0.3.0", - "System.Collections.Specialized|4.0.3.0", - "System.Collections|4.0.11.0", - "System.ComponentModel.Composition|4.0.0.0", - "System.ComponentModel.EventBasedAsync|4.0.11.0", - "System.ComponentModel.Primitives|4.1.2.0", - "System.ComponentModel.TypeConverter|4.1.2.0", - "System.ComponentModel|4.0.1.0", - "System.Console|4.0.2.0", - "System.Core|4.0.0.0", - "System.Data.Common|4.1.2.0", - "System.Data|4.0.0.0", - "System.Diagnostics.Contracts|4.0.1.0", - "System.Diagnostics.Debug|4.0.11.0", - "System.Diagnostics.FileVersionInfo|4.0.2.0", - "System.Diagnostics.Process|4.1.2.0", - "System.Diagnostics.StackTrace|4.0.4.0", - "System.Diagnostics.TextWriterTraceListener|4.0.2.0", - "System.Diagnostics.Tools|4.0.1.0", - "System.Diagnostics.TraceSource|4.0.2.0", - "System.Diagnostics.Tracing|4.1.2.0", - "System.Drawing.Primitives|4.0.2.0", - "System.Drawing|4.0.0.0", - "System.Dynamic.Runtime|4.0.11.0", - "System.Globalization.Calendars|4.0.3.0", - "System.Globalization.Extensions|4.0.3.0", - "System.Globalization|4.0.11.0", - "System.IO.Compression.FileSystem|4.0.0.0", - "System.IO.Compression.ZipFile|4.0.3.0", - "System.IO.Compression|4.1.3.0", - "System.IO.FileSystem.DriveInfo|4.0.2.0", - "System.IO.FileSystem.Primitives|4.0.3.0", - "System.IO.FileSystem.Watcher|4.0.2.0", - "System.IO.FileSystem|4.0.3.0", - "System.IO.IsolatedStorage|4.0.2.0", - "System.IO.MemoryMappedFiles|4.0.2.0", - "System.IO.Pipes|4.0.2.0", - "System.IO.UnmanagedMemoryStream|4.0.3.0", - "System.IO|4.1.2.0", - "System.Linq.Expressions|4.1.2.0", - "System.Linq.Parallel|4.0.1.0", - "System.Linq.Queryable|4.0.1.0", - "System.Linq|4.1.2.0", - "System.Memory|4.0.2.0", - "System.Net.Http|4.1.2.0", - "System.Net.NameResolution|4.0.2.0", - "System.Net.NetworkInformation|4.1.2.0", - "System.Net.Ping|4.0.2.0", - "System.Net.Primitives|4.0.11.0", - "System.Net.Requests|4.0.11.0", - "System.Net.Security|4.0.2.0", - "System.Net.Sockets|4.1.2.0", - "System.Net.WebHeaderCollection|4.0.1.0", - "System.Net.WebSockets.Client|4.0.2.0", - "System.Net.WebSockets|4.0.2.0", - "System.Net|4.0.0.0", - "System.Numerics.Vectors|4.1.5.0", - "System.Numerics|4.0.0.0", - "System.ObjectModel|4.0.11.0", - "System.Reflection.DispatchProxy|4.0.5.0", - "System.Reflection.Emit.ILGeneration|4.0.1.0", - "System.Reflection.Emit.Lightweight|4.0.1.0", - "System.Reflection.Emit|4.0.1.0", - "System.Reflection.Extensions|4.0.1.0", - "System.Reflection.Primitives|4.0.1.0", - "System.Reflection|4.1.2.0", - "System.Resources.Reader|4.0.2.0", - "System.Resources.ResourceManager|4.0.1.0", - "System.Resources.Writer|4.0.2.0", - "System.Runtime.CompilerServices.VisualC|4.0.2.0", - "System.Runtime.Extensions|4.1.2.0", - "System.Runtime.Handles|4.0.1.0", - "System.Runtime.InteropServices.RuntimeInformation|4.0.2.0", - "System.Runtime.InteropServices|4.1.2.0", - "System.Runtime.Numerics|4.0.1.0", - "System.Runtime.Serialization.Formatters|4.0.2.0", - "System.Runtime.Serialization.Json|4.0.1.0", - "System.Runtime.Serialization.Primitives|4.1.3.0", - "System.Runtime.Serialization.Xml|4.1.3.0", - "System.Runtime.Serialization|4.0.0.0", - "System.Runtime|4.1.2.0", - "System.Security.Claims|4.0.3.0", - "System.Security.Cryptography.Algorithms|4.2.2.0", - "System.Security.Cryptography.Csp|4.0.2.0", - "System.Security.Cryptography.Encoding|4.0.2.0", - "System.Security.Cryptography.Primitives|4.0.2.0", - "System.Security.Cryptography.X509Certificates|4.1.2.0", - "System.Security.Principal|4.0.1.0", - "System.Security.SecureString|4.0.2.0", - "System.ServiceModel.Web|4.0.0.0", - "System.Text.Encoding.Extensions|4.0.11.0", - "System.Text.Encoding|4.0.11.0", - "System.Text.RegularExpressions|4.1.1.0", - "System.Threading.Overlapped|4.0.3.0", - "System.Threading.Tasks.Extensions|4.2.1.0", - "System.Threading.Tasks.Parallel|4.0.1.0", - "System.Threading.Tasks|4.0.11.0", - "System.Threading.Thread|4.0.2.0", - "System.Threading.ThreadPool|4.0.12.0", - "System.Threading.Timer|4.0.1.0", - "System.Threading|4.0.11.0", - "System.Transactions|4.0.0.0", - "System.ValueTuple|4.0.2.0", - "System.Web|4.0.0.0", - "System.Windows|4.0.0.0", - "System.Xml.Linq|4.0.0.0", - "System.Xml.ReaderWriter|4.1.1.0", - "System.Xml.Serialization|4.0.0.0", - "System.Xml.XDocument|4.0.11.0", - "System.Xml.XPath.XDocument|4.0.3.0", - "System.Xml.XPath|4.0.3.0", - "System.Xml.XmlDocument|4.0.3.0", - "System.Xml.XmlSerializer|4.0.11.0", - "System.Xml|4.0.0.0", - "System|4.0.0.0", - "mscorlib|4.0.0.0", - "netstandard|2.1.0.0" - ], - "microsoft.netframework.referenceassemblies.net20": [], - "microsoft.netframework.referenceassemblies.net35": [], - "microsoft.netframework.referenceassemblies.net40": [], - "microsoft.netframework.referenceassemblies.net45": [], - "microsoft.netframework.referenceassemblies.net451": [], - "microsoft.netframework.referenceassemblies.net452": [], - "microsoft.netframework.referenceassemblies.net46": [], - "microsoft.netframework.referenceassemblies.net461": [], - "microsoft.netframework.referenceassemblies.net462": [], - "microsoft.netframework.referenceassemblies.net47": [], - "microsoft.netframework.referenceassemblies.net471": [], - "microsoft.netframework.referenceassemblies.net472": [], - "microsoft.netframework.referenceassemblies.net48": [], - "microsoft.netframework.referenceassemblies.net481": [], - "microsoft.netcore.app": [], - "microsoft.netcore.app.ref": [ - "Microsoft.CSharp|8.0.0.0", - "Microsoft.VisualBasic.Core|13.0.0.0", - "Microsoft.VisualBasic|10.0.0.0", - "Microsoft.Win32.Primitives|8.0.0.0", - "Microsoft.Win32.Registry|8.0.0.0", - "System.AppContext|8.0.0.0", - "System.Buffers|8.0.0.0", - "System.Collections.Concurrent|8.0.0.0", - "System.Collections.Immutable|8.0.0.0", - "System.Collections.NonGeneric|8.0.0.0", - "System.Collections.Specialized|8.0.0.0", - "System.Collections|8.0.0.0", - "System.ComponentModel.Annotations|8.0.0.0", - "System.ComponentModel.DataAnnotations|4.0.0.0", - "System.ComponentModel.EventBasedAsync|8.0.0.0", - "System.ComponentModel.Primitives|8.0.0.0", - "System.ComponentModel.TypeConverter|8.0.0.0", - "System.ComponentModel|8.0.0.0", - "System.Configuration|4.0.0.0", - "System.Console|8.0.0.0", - "System.Core|4.0.0.0", - "System.Data.Common|8.0.0.0", - "System.Data.DataSetExtensions|8.0.0.0", - "System.Data|4.0.0.0", - "System.Diagnostics.Contracts|8.0.0.0", - "System.Diagnostics.Debug|8.0.0.0", - "System.Diagnostics.DiagnosticSource|8.0.0.0", - "System.Diagnostics.FileVersionInfo|8.0.0.0", - "System.Diagnostics.Process|8.0.0.0", - "System.Diagnostics.StackTrace|8.0.0.0", - "System.Diagnostics.TextWriterTraceListener|8.0.0.0", - "System.Diagnostics.Tools|8.0.0.0", - "System.Diagnostics.TraceSource|8.0.0.0", - "System.Diagnostics.Tracing|8.0.0.0", - "System.Drawing.Primitives|8.0.0.0", - "System.Drawing|4.0.0.0", - "System.Dynamic.Runtime|8.0.0.0", - "System.Formats.Asn1|8.0.0.0", - "System.Formats.Tar|8.0.0.0", - "System.Globalization.Calendars|8.0.0.0", - "System.Globalization.Extensions|8.0.0.0", - "System.Globalization|8.0.0.0", - "System.IO.Compression.Brotli|8.0.0.0", - "System.IO.Compression.FileSystem|4.0.0.0", - "System.IO.Compression.ZipFile|8.0.0.0", - "System.IO.Compression|8.0.0.0", - "System.IO.FileSystem.AccessControl|8.0.0.0", - "System.IO.FileSystem.DriveInfo|8.0.0.0", - "System.IO.FileSystem.Primitives|8.0.0.0", - "System.IO.FileSystem.Watcher|8.0.0.0", - "System.IO.FileSystem|8.0.0.0", - "System.IO.IsolatedStorage|8.0.0.0", - "System.IO.MemoryMappedFiles|8.0.0.0", - "System.IO.Pipes.AccessControl|8.0.0.0", - "System.IO.Pipes|8.0.0.0", - "System.IO.UnmanagedMemoryStream|8.0.0.0", - "System.IO|8.0.0.0", - "System.Linq.Expressions|8.0.0.0", - "System.Linq.Parallel|8.0.0.0", - "System.Linq.Queryable|8.0.0.0", - "System.Linq|8.0.0.0", - "System.Memory|8.0.0.0", - "System.Net.Http.Json|8.0.0.0", - "System.Net.Http|8.0.0.0", - "System.Net.HttpListener|8.0.0.0", - "System.Net.Mail|8.0.0.0", - "System.Net.NameResolution|8.0.0.0", - "System.Net.NetworkInformation|8.0.0.0", - "System.Net.Ping|8.0.0.0", - "System.Net.Primitives|8.0.0.0", - "System.Net.Quic|8.0.0.0", - "System.Net.Requests|8.0.0.0", - "System.Net.Security|8.0.0.0", - "System.Net.ServicePoint|8.0.0.0", - "System.Net.Sockets|8.0.0.0", - "System.Net.WebClient|8.0.0.0", - "System.Net.WebHeaderCollection|8.0.0.0", - "System.Net.WebProxy|8.0.0.0", - "System.Net.WebSockets.Client|8.0.0.0", - "System.Net.WebSockets|8.0.0.0", - "System.Net|4.0.0.0", - "System.Numerics.Vectors|8.0.0.0", - "System.Numerics|4.0.0.0", - "System.ObjectModel|8.0.0.0", - "System.Reflection.DispatchProxy|8.0.0.0", - "System.Reflection.Emit.ILGeneration|8.0.0.0", - "System.Reflection.Emit.Lightweight|8.0.0.0", - "System.Reflection.Emit|8.0.0.0", - "System.Reflection.Extensions|8.0.0.0", - "System.Reflection.Metadata|8.0.0.0", - "System.Reflection.Primitives|8.0.0.0", - "System.Reflection.TypeExtensions|8.0.0.0", - "System.Reflection|8.0.0.0", - "System.Resources.Reader|8.0.0.0", - "System.Resources.ResourceManager|8.0.0.0", - "System.Resources.Writer|8.0.0.0", - "System.Runtime.CompilerServices.Unsafe|8.0.0.0", - "System.Runtime.CompilerServices.VisualC|8.0.0.0", - "System.Runtime.Extensions|8.0.0.0", - "System.Runtime.Handles|8.0.0.0", - "System.Runtime.InteropServices.JavaScript|8.0.0.0", - "System.Runtime.InteropServices.RuntimeInformation|8.0.0.0", - "System.Runtime.InteropServices|8.0.0.0", - "System.Runtime.Intrinsics|8.0.0.0", - "System.Runtime.Loader|8.0.0.0", - "System.Runtime.Numerics|8.0.0.0", - "System.Runtime.Serialization.Formatters|8.0.0.0", - "System.Runtime.Serialization.Json|8.0.0.0", - "System.Runtime.Serialization.Primitives|8.0.0.0", - "System.Runtime.Serialization.Xml|8.0.0.0", - "System.Runtime.Serialization|4.0.0.0", - "System.Runtime|8.0.0.0", - "System.Security.AccessControl|8.0.0.0", - "System.Security.Claims|8.0.0.0", - "System.Security.Cryptography.Algorithms|8.0.0.0", - "System.Security.Cryptography.Cng|8.0.0.0", - "System.Security.Cryptography.Csp|8.0.0.0", - "System.Security.Cryptography.Encoding|8.0.0.0", - "System.Security.Cryptography.OpenSsl|8.0.0.0", - "System.Security.Cryptography.Primitives|8.0.0.0", - "System.Security.Cryptography.X509Certificates|8.0.0.0", - "System.Security.Cryptography|8.0.0.0", - "System.Security.Principal.Windows|8.0.0.0", - "System.Security.Principal|8.0.0.0", - "System.Security.SecureString|8.0.0.0", - "System.Security|4.0.0.0", - "System.ServiceModel.Web|4.0.0.0", - "System.ServiceProcess|4.0.0.0", - "System.Text.Encoding.CodePages|8.0.0.0", - "System.Text.Encoding.Extensions|8.0.0.0", - "System.Text.Encoding|8.0.0.0", - "System.Text.Encodings.Web|8.0.0.0", - "System.Text.Json|8.0.0.0", - "System.Text.RegularExpressions|8.0.0.0", - "System.Threading.Channels|8.0.0.0", - "System.Threading.Overlapped|8.0.0.0", - "System.Threading.Tasks.Dataflow|8.0.0.0", - "System.Threading.Tasks.Extensions|8.0.0.0", - "System.Threading.Tasks.Parallel|8.0.0.0", - "System.Threading.Tasks|8.0.0.0", - "System.Threading.Thread|8.0.0.0", - "System.Threading.ThreadPool|8.0.0.0", - "System.Threading.Timer|8.0.0.0", - "System.Threading|8.0.0.0", - "System.Transactions.Local|8.0.0.0", - "System.Transactions|4.0.0.0", - "System.ValueTuple|8.0.0.0", - "System.Web.HttpUtility|8.0.0.0", - "System.Web|4.0.0.0", - "System.Windows|4.0.0.0", - "System.Xml.Linq|4.0.0.0", - "System.Xml.ReaderWriter|8.0.0.0", - "System.Xml.Serialization|4.0.0.0", - "System.Xml.XDocument|8.0.0.0", - "System.Xml.XPath.XDocument|8.0.0.0", - "System.Xml.XPath|8.0.0.0", - "System.Xml.XmlDocument|8.0.0.0", - "System.Xml.XmlSerializer|8.0.0.0", - "System.Xml|4.0.0.0", - "System|4.0.0.0", - "WindowsBase|4.0.0.0", - "mscorlib|4.0.0.0", - "netstandard|2.1.0.0" - ], - "microsoft.aspnetcore.app": [], - "microsoft.aspnetcore.app.ref": [ - "Microsoft.AspNetCore.Antiforgery|8.0.0.0", - "Microsoft.AspNetCore.Authentication.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Authentication.BearerToken|8.0.0.0", - "Microsoft.AspNetCore.Authentication.Cookies|8.0.0.0", - "Microsoft.AspNetCore.Authentication.Core|8.0.0.0", - "Microsoft.AspNetCore.Authentication.OAuth|8.0.0.0", - "Microsoft.AspNetCore.Authentication|8.0.0.0", - "Microsoft.AspNetCore.Authorization.Policy|8.0.0.0", - "Microsoft.AspNetCore.Authorization|8.0.0.0", - "Microsoft.AspNetCore.Components.Authorization|8.0.0.0", - "Microsoft.AspNetCore.Components.Endpoints|8.0.0.0", - "Microsoft.AspNetCore.Components.Forms|8.0.0.0", - "Microsoft.AspNetCore.Components.Server|8.0.0.0", - "Microsoft.AspNetCore.Components.Web|8.0.0.0", - "Microsoft.AspNetCore.Components|8.0.0.0", - "Microsoft.AspNetCore.Connections.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.CookiePolicy|8.0.0.0", - "Microsoft.AspNetCore.Cors|8.0.0.0", - "Microsoft.AspNetCore.Cryptography.Internal|8.0.0.0", - "Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0.0", - "Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.DataProtection.Extensions|8.0.0.0", - "Microsoft.AspNetCore.DataProtection|8.0.0.0", - "Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0.0", - "Microsoft.AspNetCore.Diagnostics|8.0.0.0", - "Microsoft.AspNetCore.HostFiltering|8.0.0.0", - "Microsoft.AspNetCore.Hosting.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Hosting|8.0.0.0", - "Microsoft.AspNetCore.Html.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Http.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Http.Connections.Common|8.0.0.0", - "Microsoft.AspNetCore.Http.Connections|8.0.0.0", - "Microsoft.AspNetCore.Http.Extensions|8.0.0.0", - "Microsoft.AspNetCore.Http.Features|8.0.0.0", - "Microsoft.AspNetCore.Http.Results|8.0.0.0", - "Microsoft.AspNetCore.Http|8.0.0.0", - "Microsoft.AspNetCore.HttpLogging|8.0.0.0", - "Microsoft.AspNetCore.HttpOverrides|8.0.0.0", - "Microsoft.AspNetCore.HttpsPolicy|8.0.0.0", - "Microsoft.AspNetCore.Identity|8.0.0.0", - "Microsoft.AspNetCore.Localization.Routing|8.0.0.0", - "Microsoft.AspNetCore.Localization|8.0.0.0", - "Microsoft.AspNetCore.Metadata|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Core|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Cors|8.0.0.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Localization|8.0.0.0", - "Microsoft.AspNetCore.Mvc.Razor|8.0.0.0", - "Microsoft.AspNetCore.Mvc.RazorPages|8.0.0.0", - "Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0.0", - "Microsoft.AspNetCore.Mvc|8.0.0.0", - "Microsoft.AspNetCore.OutputCaching|8.0.0.0", - "Microsoft.AspNetCore.RateLimiting|8.0.0.0", - "Microsoft.AspNetCore.Razor.Runtime|8.0.0.0", - "Microsoft.AspNetCore.Razor|8.0.0.0", - "Microsoft.AspNetCore.RequestDecompression|8.0.0.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.ResponseCaching|8.0.0.0", - "Microsoft.AspNetCore.ResponseCompression|8.0.0.0", - "Microsoft.AspNetCore.Rewrite|8.0.0.0", - "Microsoft.AspNetCore.Routing.Abstractions|8.0.0.0", - "Microsoft.AspNetCore.Routing|8.0.0.0", - "Microsoft.AspNetCore.Server.HttpSys|8.0.0.0", - "Microsoft.AspNetCore.Server.IIS|8.0.0.0", - "Microsoft.AspNetCore.Server.IISIntegration|8.0.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0.0", - "Microsoft.AspNetCore.Server.Kestrel|8.0.0.0", - "Microsoft.AspNetCore.Session|8.0.0.0", - "Microsoft.AspNetCore.SignalR.Common|8.0.0.0", - "Microsoft.AspNetCore.SignalR.Core|8.0.0.0", - "Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0.0", - "Microsoft.AspNetCore.SignalR|8.0.0.0", - "Microsoft.AspNetCore.StaticFiles|8.0.0.0", - "Microsoft.AspNetCore.WebSockets|8.0.0.0", - "Microsoft.AspNetCore.WebUtilities|8.0.0.0", - "Microsoft.AspNetCore|8.0.0.0", - "Microsoft.Extensions.Caching.Abstractions|8.0.0.0", - "Microsoft.Extensions.Caching.Memory|8.0.0.0", - "Microsoft.Extensions.Configuration.Abstractions|8.0.0.0", - "Microsoft.Extensions.Configuration.Binder|8.0.0.0", - "Microsoft.Extensions.Configuration.CommandLine|8.0.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0.0", - "Microsoft.Extensions.Configuration.FileExtensions|8.0.0.0", - "Microsoft.Extensions.Configuration.Ini|8.0.0.0", - "Microsoft.Extensions.Configuration.Json|8.0.0.0", - "Microsoft.Extensions.Configuration.KeyPerFile|8.0.0.0", - "Microsoft.Extensions.Configuration.UserSecrets|8.0.0.0", - "Microsoft.Extensions.Configuration.Xml|8.0.0.0", - "Microsoft.Extensions.Configuration|8.0.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0.0", - "Microsoft.Extensions.DependencyInjection|8.0.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions|8.0.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0.0", - "Microsoft.Extensions.Diagnostics|8.0.0.0", - "Microsoft.Extensions.Features|8.0.0.0", - "Microsoft.Extensions.FileProviders.Abstractions|8.0.0.0", - "Microsoft.Extensions.FileProviders.Composite|8.0.0.0", - "Microsoft.Extensions.FileProviders.Embedded|8.0.0.0", - "Microsoft.Extensions.FileProviders.Physical|8.0.0.0", - "Microsoft.Extensions.FileSystemGlobbing|8.0.0.0", - "Microsoft.Extensions.Hosting.Abstractions|8.0.0.0", - "Microsoft.Extensions.Hosting|8.0.0.0", - "Microsoft.Extensions.Http|8.0.0.0", - "Microsoft.Extensions.Identity.Core|8.0.0.0", - "Microsoft.Extensions.Identity.Stores|8.0.0.0", - "Microsoft.Extensions.Localization.Abstractions|8.0.0.0", - "Microsoft.Extensions.Localization|8.0.0.0", - "Microsoft.Extensions.Logging.Abstractions|8.0.0.0", - "Microsoft.Extensions.Logging.Configuration|8.0.0.0", - "Microsoft.Extensions.Logging.Console|8.0.0.0", - "Microsoft.Extensions.Logging.Debug|8.0.0.0", - "Microsoft.Extensions.Logging.EventLog|8.0.0.0", - "Microsoft.Extensions.Logging.EventSource|8.0.0.0", - "Microsoft.Extensions.Logging.TraceSource|8.0.0.0", - "Microsoft.Extensions.Logging|8.0.0.0", - "Microsoft.Extensions.ObjectPool|8.0.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0.0", - "Microsoft.Extensions.Options.DataAnnotations|8.0.0.0", - "Microsoft.Extensions.Options|8.0.0.0", - "Microsoft.Extensions.Primitives|8.0.0.0", - "Microsoft.Extensions.WebEncoders|8.0.0.0", - "Microsoft.JSInterop|8.0.0.0", - "Microsoft.Net.Http.Headers|8.0.0.0", - "System.Diagnostics.EventLog|8.0.0.0", - "System.IO.Pipelines|8.0.0.0", - "System.Security.Cryptography.Xml|8.0.0.0", - "System.Threading.RateLimiting|8.0.0.0" - ] - } + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "Deprecated==1.2.14" } }, - "nuget.netstandard.library.v1.6.1": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_gevent": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "netstandard.library", - "version": "1.6.1", - "sha512": "sha512-CXLcLbtJJeiW9ivOLlnU5IY5Mg7jitMBbc1IX71pNqDtCAc61e7yphLf8F38OQ85MP/5552HoGBw7rgSgnfL0A==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "gevent==22.08.0" } }, - "nuget.microsoft.aspnetcore.app.v2.1.34": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "grpc_python_dependencies_38_google_api_core": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.aspnetcore.app", - "version": "2.1.34", - "sha512": "sha512-SIOjTfqVrxUu6Ov6YTO2Szq4qZ/FWjX0O4pFPz+bV6BVC5PJCEfkSrGE26rxuGENVMCuU6nNehDrpa/7rqhk6Q==" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "google-api-core==1.34.1" } - } - }, - "recordedRepoMappingEntries": [ - [ - "local_config_platform", - "platforms", - "platforms" - ], - [ - "platforms", - "host_platform", - "platforms~host_platform~host_platform" - ], - [ - "rules_dotnet~", - "bazel_skylib", - "bazel_skylib~" - ], - [ - "rules_dotnet~", - "bazel_tools", - "bazel_tools" - ], - [ - "rules_dotnet~", - "local_config_platform", - "local_config_platform" - ], - [ - "rules_dotnet~", - "rules_dotnet", - "rules_dotnet~" - ] - ] - } - }, - "@@rules_foreign_cc~//foreign_cc:extensions.bzl%tools": { - "general": { - "bzlTransitiveDigest": "a7qnESofmIRYId6wwGNPJ9kvExU80KrkxL281P3+lBE=", - "usagesDigest": "hK5/SjH6eu1u+V0YHRti+lZvw7Wb4oU6Raw6P0mAfDQ=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "rules_foreign_cc_framework_toolchain_linux": { - "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", - "ruleClassName": "framework_toolchain_repository", + }, + "grpc_python_dependencies_38_google_auth": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl", - "exec_compatible_with": [ - "@platforms//os:linux" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "google-auth==2.23.4" } }, - "rules_foreign_cc_framework_toolchain_freebsd": { - "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", - "ruleClassName": "framework_toolchain_repository", + "grpc_python_dependencies_38_google_cloud_monitoring": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl", - "exec_compatible_with": [ - "@platforms//os:freebsd" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "google-cloud-monitoring==2.16.0" } }, - "rules_foreign_cc_framework_toolchain_windows": { - "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", - "ruleClassName": "framework_toolchain_repository", + "grpc_python_dependencies_38_google_cloud_trace": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl", - "exec_compatible_with": [ - "@platforms//os:windows" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "google-cloud-trace==1.11.3" } }, - "rules_foreign_cc_framework_toolchain_macos": { - "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", - "ruleClassName": "framework_toolchain_repository", + "grpc_python_dependencies_38_googleapis_common_protos": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl", - "exec_compatible_with": [ - "@platforms//os:macos" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "googleapis-common-protos==1.63.1" } }, - "rules_foreign_cc_framework_toolchains": { - "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", - "ruleClassName": "framework_toolchain_repository_hub", - "attributes": {} + "grpc_python_dependencies_38_greenlet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "greenlet==1.1.3.post0" + } }, - "cmake_src": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_idna": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", - "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa", - "strip_prefix": "cmake-3.23.2", - "urls": [ - "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "idna==2.7" } }, - "gnumake_src": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_importlib_metadata": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", - "sha256": "581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18", - "strip_prefix": "make-4.4", - "urls": [ - "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz", - "http://ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "importlib-metadata==6.11.0" } }, - "ninja_build_src": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_oauth2client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", - "sha256": "31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea", - "strip_prefix": "ninja-1.11.1", - "urls": [ - "https://github.com/ninja-build/ninja/archive/v1.11.1.tar.gz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "oauth2client==4.1.0" } }, - "meson_src": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_opencensus_context": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "exports_files([\"meson.py\"])\n\nfilegroup(\n name = \"runtime\",\n srcs = glob([\"mesonbuild/**\"]),\n visibility = [\"//visibility:public\"],\n)\n", - "strip_prefix": "meson-1.1.1", - "url": "https://github.com/mesonbuild/meson/releases/download/1.1.1/meson-1.1.1.tar.gz" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "opencensus-context==0.1.3" } }, - "glib_dev": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_opentelemetry_api": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "\nload(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\n\ncc_import(\n name = \"glib_dev\",\n hdrs = glob([\"include/**\"]),\n shared_library = \"@glib_runtime//:bin/libglib-2.0-0.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", - "sha256": "bdf18506df304d38be98a4b3f18055b8b8cca81beabecad0eece6ce95319c369", - "urls": [ - "https://download.gnome.org/binaries/win64/glib/2.26/glib-dev_2.26.1-1_win64.zip" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "opentelemetry-api==1.25.0" } }, - "glib_src": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_opentelemetry_exporter_prometheus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "\ncc_import(\n name = \"msvc_hdr\",\n hdrs = [\"msvc_recommended_pragmas.h\"],\n visibility = [\"//visibility:public\"],\n)\n ", - "sha256": "bc96f63112823b7d6c9f06572d2ad626ddac7eb452c04d762592197f6e07898e", - "strip_prefix": "glib-2.26.1", - "urls": [ - "https://download.gnome.org/sources/glib/2.26/glib-2.26.1.tar.gz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, - "glib_runtime": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_opentelemetry_resourcedetector_gcp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "\nexports_files(\n [\n \"bin/libgio-2.0-0.dll\",\n \"bin/libglib-2.0-0.dll\",\n \"bin/libgmodule-2.0-0.dll\",\n \"bin/libgobject-2.0-0.dll\",\n \"bin/libgthread-2.0-0.dll\",\n ],\n visibility = [\"//visibility:public\"],\n)\n ", - "sha256": "88d857087e86f16a9be651ee7021880b3f7ba050d34a1ed9f06113b8799cb973", - "urls": [ - "https://download.gnome.org/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, - "gettext_runtime": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_opentelemetry_sdk": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "\ncc_import(\n name = \"gettext_runtime\",\n shared_library = \"bin/libintl-8.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", - "sha256": "1f4269c0e021076d60a54e98da6f978a3195013f6de21674ba0edbc339c5b079", - "urls": [ - "https://download.gnome.org/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "opentelemetry-sdk==1.25.0" } }, - "pkgconfig_src": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_opentelemetry_semantic_conventions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", - "sha256": "6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591", - "strip_prefix": "pkg-config-0.29.2", - "patches": [ - "@@rules_foreign_cc~//toolchains:pkgconfig-detectenv.patch", - "@@rules_foreign_cc~//toolchains:pkgconfig-makefile-vc.patch" - ], - "urls": [ - "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, - "bazel_skylib": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_prometheus_client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz" - ], - "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "prometheus_client==0.20.0" } }, - "rules_python": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_proto_plus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sha256": "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", - "strip_prefix": "rules_python-0.23.1", - "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.23.1.tar.gz" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "proto-plus==1.22.3" } }, - "cmake-3.23.2-linux-aarch64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_protobuf": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz" - ], - "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e", - "strip_prefix": "cmake-3.23.2-linux-aarch64", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "protobuf>=5.27.1,<6.0dev" } }, - "cmake-3.23.2-linux-x86_64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_pyasn1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz" - ], - "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708", - "strip_prefix": "cmake-3.23.2-linux-x86_64", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "pyasn1==0.5.0" } }, - "cmake-3.23.2-macos-universal": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_pyasn1_modules": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz" - ], - "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88", - "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "pyasn1-modules==0.3.0" } }, - "cmake-3.23.2-windows-i386": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_requests": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip" - ], - "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07", - "strip_prefix": "cmake-3.23.2-windows-i386", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "requests==2.25.1" } }, - "cmake-3.23.2-windows-x86_64": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_rsa": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip" - ], - "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0", - "strip_prefix": "cmake-3.23.2-windows-x86_64", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "rsa==4.9" } }, - "cmake_3.23.2_toolchains": { - "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl", - "ruleClassName": "prebuilt_toolchains_repository", + "grpc_python_dependencies_38_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "repos": { - "cmake-3.23.2-linux-aarch64": [ - "@platforms//cpu:aarch64", - "@platforms//os:linux" - ], - "cmake-3.23.2-linux-x86_64": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux" - ], - "cmake-3.23.2-macos-universal": [ - "@platforms//os:macos" - ], - "cmake-3.23.2-windows-i386": [ - "@platforms//cpu:x86_32", - "@platforms//os:windows" - ], - "cmake-3.23.2-windows-x86_64": [ - "@platforms//cpu:x86_64", - "@platforms//os:windows" - ] - }, - "tool": "cmake" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "setuptools==44.1.1" } }, - "ninja_1.11.1_linux": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_typing_extensions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip" - ], - "sha256": "b901ba96e486dce377f9a070ed4ef3f79deb45f4ffe2938f8e7ddc69cfb3df77", - "strip_prefix": "", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "typing-extensions==4.9.0" } }, - "ninja_1.11.1_mac": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_urllib3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-mac.zip" - ], - "sha256": "482ecb23c59ae3d4f158029112de172dd96bb0e97549c4b1ca32d8fad11f873e", - "strip_prefix": "", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "urllib3==1.26.18" } }, - "ninja_1.11.1_win": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_38_wheel": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip" - ], - "sha256": "524b344a1a9a55005eaf868d991e090ab8ce07fa109f1820d40e74642e289abc", - "strip_prefix": "", - "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" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "wheel==0.38.1" } }, - "ninja_1.11.1_toolchains": { - "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl", - "ruleClassName": "prebuilt_toolchains_repository", + "grpc_python_dependencies_38_wrapt": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "repos": { - "ninja_1.11.1_linux": [ - "@platforms//cpu:x86_64", - "@platforms//os:linux" - ], - "ninja_1.11.1_mac": [ - "@platforms//cpu:x86_64", - "@platforms//os:macos" - ], - "ninja_1.11.1_win": [ - "@platforms//cpu:x86_64", - "@platforms//os:windows" - ] - }, - "tool": "ninja" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "wrapt==1.16.0" } - } - }, - "recordedRepoMappingEntries": [ - [ - "rules_foreign_cc~", - "bazel_tools", - "bazel_tools" - ], - [ - "rules_foreign_cc~", - "rules_foreign_cc", - "rules_foreign_cc~" - ] - ] - } - }, - "@@rules_kotlin~//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { - "general": { - "bzlTransitiveDigest": "fus14IFJ/1LGWWGKPH/U18VnJCoMjfDt1ckahqCnM0A=", - "usagesDigest": "aJF6fLy82rR95Ff5CZPAqxNoFgOMLMN5ImfBS0nhnkg=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "com_github_jetbrains_kotlin_git": { - "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:compiler.bzl", - "ruleClassName": "kotlin_compiler_git_repository", + }, + "grpc_python_dependencies_38_zipp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip" - ], - "sha256": "93137d3aab9afa9b27cb06a824c2324195c6b6f6179d8a8653f440f5bd58be88" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "zipp==3.17.0" } }, - "com_github_jetbrains_kotlin": { - "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:compiler.bzl", - "ruleClassName": "kotlin_capabilities_repository", + "grpc_python_dependencies_38_zope_event": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "git_repository_name": "com_github_jetbrains_kotlin_git", - "compiler_version": "1.9.23" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "zope.event==4.5.0" } }, - "com_github_google_ksp": { - "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:ksp.bzl", - "ruleClassName": "ksp_compiler_plugin_repository", + "grpc_python_dependencies_38_zope_interface": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/google/ksp/releases/download/1.9.23-1.0.20/artifacts.zip" - ], - "sha256": "ee0618755913ef7fd6511288a232e8fad24838b9af6ea73972a76e81053c8c2d", - "strip_version": "1.9.23-1.0.20" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "grpc_python_dependencies_38", + "requirement": "zope.interface==6.1" } }, - "com_github_pinterest_ktlint": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_file", + "grpc_python_dependencies_39_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sha256": "01b2e0ef893383a50dbeb13970fe7fa3be36ca3e83259e01649945b09d736985", - "urls": [ - "https://github.com/pinterest/ktlint/releases/download/1.3.0/ktlint" - ], - "executable": true + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "absl-py==1.4.0" } }, - "rules_android": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "grpc_python_dependencies_39_cachetools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "sha256": "cd06d15dd8bb59926e4d65f9003bfc20f9da4b2519985c27e190cddc8b7a7806", - "strip_prefix": "rules_android-0.1.1", - "urls": [ - "https://github.com/bazelbuild/rules_android/archive/v0.1.1.zip" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "cachetools==5.3.2" } - } - }, - "recordedRepoMappingEntries": [ - [ - "rules_kotlin~", - "bazel_tools", - "bazel_tools" - ] - ] - } - }, - "@@rules_nodejs~//nodejs:extensions.bzl%node": { - "general": { - "bzlTransitiveDigest": "xRRX0NuyvfLtjtzM4AqJgxdMSWWnLIw28rUUi10y6k0=", - "usagesDigest": "9IUJvk13jWE1kE+N3sP2y0mw9exjO9CGQ2oAgwKTNK4=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "nodejs_linux_amd64": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + }, + "grpc_python_dependencies_39_certifi": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "linux_amd64", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "certifi==2023.7.22" } }, - "nodejs_linux_arm64": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + "grpc_python_dependencies_39_chardet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "linux_arm64", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "chardet==3.0.4" } }, - "nodejs_linux_s390x": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + "grpc_python_dependencies_39_charset_normalizer": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "linux_s390x", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "charset-normalizer==3.3.2" } }, - "nodejs_linux_ppc64le": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + "grpc_python_dependencies_39_coverage": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "linux_ppc64le", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "coverage==4.5.4" } }, - "nodejs_darwin_amd64": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + "grpc_python_dependencies_39_cython": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "darwin_amd64", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "cython==3.0.0" } }, - "nodejs_darwin_arm64": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + "grpc_python_dependencies_39_deprecated": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "darwin_arm64", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "Deprecated==1.2.14" } }, - "nodejs_windows_amd64": { - "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", - "ruleClassName": "node_repositories", + "grpc_python_dependencies_39_gevent": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "platform": "windows_amd64", - "node_version": "16.19.0" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "gevent==22.08.0" } }, - "nodejs": { - "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", - "ruleClassName": "nodejs_repo_host_os_alias", + "grpc_python_dependencies_39_google_api_core": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "user_node_repository_name": "nodejs" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "google-api-core==1.34.1" } }, - "nodejs_host": { - "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", - "ruleClassName": "nodejs_repo_host_os_alias", + "grpc_python_dependencies_39_google_auth": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "user_node_repository_name": "nodejs" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "google-auth==2.23.4" } }, - "nodejs_toolchains": { - "bzlFile": "@@rules_nodejs~//nodejs/private:toolchains_repo.bzl", - "ruleClassName": "toolchains_repo", + "grpc_python_dependencies_39_google_cloud_monitoring": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "user_node_repository_name": "nodejs" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "google-cloud-monitoring==2.16.0" } - } - }, - "recordedRepoMappingEntries": [ - [ - "rules_nodejs~", - "bazel_skylib", - "bazel_skylib~" - ], - [ - "rules_nodejs~", - "bazel_tools", - "bazel_tools" - ] - ] - } - }, - "@@rules_perl~//perl:extensions.bzl%perl_repositories": { - "general": { - "bzlTransitiveDigest": "UFiGL1pGBg87aouOgi2BAafq9I2tWsgb8Fh8vCwaXSo=", - "usagesDigest": "S54Jyv7XoxGXM/vuJYlHmQ1Ozn7pJ/rQI6WecZnkkL8=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "perl_linux_arm64": { - "bzlFile": "@@rules_perl~//perl:repo.bzl", - "ruleClassName": "perl_download", + }, + "grpc_python_dependencies_39_google_cloud_trace": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "strip_prefix": "perl-linux-arm64", - "sha256": "6fa4ece99e790ecbc2861f6ecb7b52694c01c2eeb215b4370f16a3b12d952117", - "urls": [ - "https://github.com/skaji/relocatable-perl/releases/download/5.36.0.1/perl-linux-arm64.tar.xz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "google-cloud-trace==1.11.3" } }, - "perl_darwin_arm64": { - "bzlFile": "@@rules_perl~//perl:repo.bzl", - "ruleClassName": "perl_download", + "grpc_python_dependencies_39_googleapis_common_protos": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "strip_prefix": "perl-darwin-arm64", - "sha256": "285769f3c50c339fb59a3987b216ae3c5c573b95babe6875a1ef56fb178433da", - "urls": [ - "https://github.com/skaji/relocatable-perl/releases/download/5.36.0.1/perl-darwin-arm64.tar.xz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "googleapis-common-protos==1.63.1" } }, - "perl_windows_x86_64": { - "bzlFile": "@@rules_perl~//perl:repo.bzl", - "ruleClassName": "perl_download", + "grpc_python_dependencies_39_greenlet": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "strip_prefix": "", - "sha256": "aeb973da474f14210d3e1a1f942dcf779e2ae7e71e4c535e6c53ebabe632cc98", - "urls": [ - "https://mirror.bazel.build/strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip", - "https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "greenlet==1.1.3.post0" } }, - "perl_darwin_amd64": { - "bzlFile": "@@rules_perl~//perl:repo.bzl", - "ruleClassName": "perl_download", + "grpc_python_dependencies_39_idna": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "strip_prefix": "perl-darwin-amd64", - "sha256": "63bc5ee36f5394d71c50cca6cafdd333ee58f9eaa40bca63c85f9bd06f2c1fd6", - "urls": [ - "https://github.com/skaji/relocatable-perl/releases/download/5.36.0.1/perl-darwin-amd64.tar.xz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "idna==2.7" } }, - "perl_linux_amd64": { - "bzlFile": "@@rules_perl~//perl:repo.bzl", - "ruleClassName": "perl_download", + "grpc_python_dependencies_39_importlib_metadata": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "strip_prefix": "perl-linux-amd64", - "sha256": "3bdffa9d7a3f97c0207314637b260ba5115b1d0829f97e3e2e301191a4d4d076", - "urls": [ - "https://github.com/skaji/relocatable-perl/releases/download/5.36.0.1/perl-linux-amd64.tar.xz" - ] + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "importlib-metadata==6.11.0" } - } - }, - "recordedRepoMappingEntries": [ - [ - "rules_perl~", - "bazel_tools", - "bazel_tools" - ], - [ - "rules_perl~", - "rules_perl", - "rules_perl~" - ] - ] - } - }, - "@@rules_swift~//swift:extensions.bzl%non_module_deps": { - "general": { - "bzlTransitiveDigest": "Cmw0SWMEF+W7yHokTa/RRl3v7uDPKysmnNQ6hvKeA30=", - "usagesDigest": "Bxpjq7dEoQ6itfQLt8YOa+X+mqBZ+FWDDiSlD7pLoho=", - "recordedFileInputs": {}, - "recordedDirentsInputs": {}, - "envVariables": {}, - "generatedRepoSpecs": { - "com_github_grpc_grpc_swift": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + }, + "grpc_python_dependencies_39_oauth2client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/grpc/grpc-swift/archive/1.16.0.tar.gz" + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "oauth2client==4.1.0" + } + }, + "grpc_python_dependencies_39_opencensus_context": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "opencensus-context==0.1.3" + } + }, + "grpc_python_dependencies_39_opentelemetry_api": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "opentelemetry-api==1.25.0" + } + }, + "grpc_python_dependencies_39_opentelemetry_exporter_prometheus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "opentelemetry-exporter-prometheus==0.46b0" + } + }, + "grpc_python_dependencies_39_opentelemetry_resourcedetector_gcp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" + } + }, + "grpc_python_dependencies_39_opentelemetry_sdk": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "opentelemetry-sdk==1.25.0" + } + }, + "grpc_python_dependencies_39_opentelemetry_semantic_conventions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "opentelemetry-semantic-conventions==0.46b0" + } + }, + "grpc_python_dependencies_39_prometheus_client": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "prometheus_client==0.20.0" + } + }, + "grpc_python_dependencies_39_proto_plus": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "proto-plus==1.22.3" + } + }, + "grpc_python_dependencies_39_protobuf": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "protobuf>=5.27.1,<6.0dev" + } + }, + "grpc_python_dependencies_39_pyasn1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "pyasn1==0.5.0" + } + }, + "grpc_python_dependencies_39_pyasn1_modules": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "pyasn1-modules==0.3.0" + } + }, + "grpc_python_dependencies_39_requests": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "requests==2.25.1" + } + }, + "grpc_python_dependencies_39_rsa": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "rsa==4.9" + } + }, + "grpc_python_dependencies_39_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "setuptools==44.1.1" + } + }, + "grpc_python_dependencies_39_typing_extensions": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "typing-extensions==4.9.0" + } + }, + "grpc_python_dependencies_39_urllib3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "urllib3==1.26.18" + } + }, + "grpc_python_dependencies_39_wheel": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "wheel==0.38.1" + } + }, + "grpc_python_dependencies_39_wrapt": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "wrapt==1.16.0" + } + }, + "grpc_python_dependencies_39_zipp": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "zipp==3.17.0" + } + }, + "grpc_python_dependencies_39_zope_event": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "zope.event==4.5.0" + } + }, + "grpc_python_dependencies_39_zope_interface": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@grpc_python_dependencies//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "grpc_python_dependencies_39", + "requirement": "zope.interface==6.1" + } + }, + "pip_deps_310_numpy": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "pip_deps_310", + "requirement": "numpy<=1.26.1" + } + }, + "pip_deps_310_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "pip_deps_310", + "requirement": "setuptools<=70.3.0" + } + }, + "pip_deps_311_numpy": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "pip_deps_311", + "requirement": "numpy<=1.26.1" + } + }, + "pip_deps_311_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "pip_deps_311", + "requirement": "setuptools<=70.3.0" + } + }, + "pip_deps_312_numpy": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "pip_deps_312", + "requirement": "numpy<=1.26.1" + } + }, + "pip_deps_312_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "pip_deps_312", + "requirement": "setuptools<=70.3.0" + } + }, + "pip_deps_38_numpy": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "pip_deps_38", + "requirement": "numpy<=1.26.1" + } + }, + "pip_deps_38_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "pip_deps_38", + "requirement": "setuptools<=70.3.0" + } + }, + "pip_deps_39_numpy": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "pip_deps_39", + "requirement": "numpy<=1.26.1" + } + }, + "pip_deps_39_setuptools": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@pip_deps//{name}:{target}", + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "pip_deps_39", + "requirement": "setuptools<=70.3.0" + } + }, + "rules_fuzzing_py_deps_310_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" ], - "sha256": "58b60431d0064969f9679411264b82e40a217ae6bd34e17096d92cc4e47556a5", - "strip_prefix": "grpc-swift-1.16.0/", - "build_file": "@@rules_swift~//third_party:com_github_grpc_grpc_swift/BUILD.overlay" + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "rules_fuzzing_py_deps_310", + "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, - "com_github_apple_swift_nio_extras": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_fuzzing_py_deps_310_six": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/apple/swift-nio-extras/archive/1.4.0.tar.gz" + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" ], - "sha256": "4684b52951d9d9937bb3e8ccd6b5daedd777021ef2519ea2f18c4c922843b52b", - "strip_prefix": "swift-nio-extras-1.4.0/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_extras/BUILD.overlay" + "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "repo": "rules_fuzzing_py_deps_310", + "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, - "com_github_apple_swift_protobuf": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_fuzzing_py_deps_311_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/apple/swift-protobuf/archive/1.20.2.tar.gz" + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" ], - "sha256": "3fb50bd4d293337f202d917b6ada22f9548a0a0aed9d9a4d791e6fbd8a246ebb", - "strip_prefix": "swift-protobuf-1.20.2/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_protobuf/BUILD.overlay" + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_fuzzing_py_deps_311", + "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, - "com_github_apple_swift_nio_ssl": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_fuzzing_py_deps_311_six": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/apple/swift-nio-ssl/archive/2.23.0.tar.gz" + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" ], - "sha256": "4787c63f61dd04d99e498adc3d1a628193387e41efddf8de19b8db04544d016d", - "strip_prefix": "swift-nio-ssl-2.23.0/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_ssl/BUILD.overlay" + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_fuzzing_py_deps_311", + "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, - "com_github_apple_swift_atomics": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_fuzzing_py_deps_312_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "urls": [ - "https://github.com/apple/swift-atomics/archive/1.1.0.tar.gz" + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" + ], + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "rules_fuzzing_py_deps_312", + "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" + } + }, + "rules_fuzzing_py_deps_312_six": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" + ], + "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "repo": "rules_fuzzing_py_deps_312", + "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + } + }, + "rules_fuzzing_py_deps_38_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" + ], + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "rules_fuzzing_py_deps_38", + "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" + } + }, + "rules_fuzzing_py_deps_38_six": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" + ], + "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "repo": "rules_fuzzing_py_deps_38", + "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + } + }, + "rules_fuzzing_py_deps_39_absl_py": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" + ], + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "rules_fuzzing_py_deps_39", + "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" + } + }, + "rules_fuzzing_py_deps_39_six": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", + "extra_pip_args": [ + "--require-hashes" ], - "sha256": "1bee7f469f7e8dc49f11cfa4da07182fbc79eab000ec2c17bfdce468c5d276fb", - "strip_prefix": "swift-atomics-1.1.0/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_atomics/BUILD.overlay" + "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "repo": "rules_fuzzing_py_deps_39", + "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, - "com_github_apple_swift_nio_http2": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_python_publish_deps_311_backports_tarfile_py3_none_any_77e284d7": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "backports.tarfile-1.2.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "backports-tarfile==1.2.0", + "sha256": "77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34", + "urls": [ + "https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_backports_tarfile_sdist_d75e02c2": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "backports_tarfile-1.2.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "backports-tarfile==1.2.0", + "sha256": "d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991", + "urls": [ + "https://files.pythonhosted.org/packages/86/72/cd9b395f25e290e633655a100af28cb253e4393396264a98bd5f5951d50f/backports_tarfile-1.2.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_certifi_py3_none_any_922820b5": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "certifi-2024.8.30-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "certifi==2024.8.30", + "sha256": "922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", + "urls": [ + "https://files.pythonhosted.org/packages/12/90/3c9ff0512038035f59d279fddeb79f5f1eccd8859f06d6163c58798b9487/certifi-2024.8.30-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_certifi_sdist_bec941d2": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "certifi-2024.8.30.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "certifi==2024.8.30", + "sha256": "bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9", "urls": [ - "https://github.com/apple/swift-nio-http2/archive/1.26.0.tar.gz" + "https://files.pythonhosted.org/packages/b0/ee/9b19140fe824b367c04c5e1b369942dd754c4c5462d5674002f75c4dedc1/certifi-2024.8.30.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_a1ed2dd2": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" ], - "sha256": "f0edfc9d6a7be1d587e5b403f2d04264bdfae59aac1d74f7d974a9022c6d2b25", - "strip_prefix": "swift-nio-http2-1.26.0/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_http2/BUILD.overlay" + "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", + "urls": [ + "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] } }, - "com_github_apple_swift_nio_transport_services": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_46bf4316": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", "urls": [ - "https://github.com/apple/swift-nio-transport-services/archive/1.15.0.tar.gz" + "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + ] + } + }, + "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_s390x_a24ed04c": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" ], - "sha256": "f3498dafa633751a52b9b7f741f7ac30c42bcbeb3b9edca6d447e0da8e693262", - "strip_prefix": "swift-nio-transport-services-1.15.0/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_transport_services/BUILD.overlay" + "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", + "urls": [ + "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl" + ] } }, - "build_bazel_rules_swift_index_import": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_610faea7": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { - "build_file": "@@rules_swift~//third_party:build_bazel_rules_swift_index_import/BUILD.overlay", - "canonical_id": "index-import-5.8", + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", "urls": [ - "https://github.com/MobileNativeFoundation/index-import/releases/download/5.8.0.1/index-import.tar.gz" + "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_aarch64_a9b15d49": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" ], - "sha256": "28c1ffa39d99e74ed70623899b207b41f79214c498c603915aef55972a851a15" + "filename": "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", + "urls": [ + "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl" + ] } }, - "com_github_apple_swift_nio": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_fc48c783": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", "urls": [ - "https://github.com/apple/swift-nio/archive/2.42.0.tar.gz" + "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_cffi_sdist_1c39c601": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" ], - "sha256": "e3304bc3fb53aea74a3e54bd005ede11f6dc357117d9b1db642d03aea87194a0", - "strip_prefix": "swift-nio-2.42.0/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio/BUILD.overlay" + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "cffi-1.17.1.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cffi==1.17.1", + "sha256": "1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", + "urls": [ + "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0d99dd8f": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c", + "urls": [ + "https://files.pythonhosted.org/packages/9c/61/73589dcc7a719582bf56aae309b6103d2762b526bffe189d635a7fcfd998/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_c57516e5": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944", + "urls": [ + "https://files.pythonhosted.org/packages/77/d5/8c982d58144de49f59571f940e329ad6e8615e1e82ef84584c5eeb5e1d72/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_6dba5d19": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee", + "urls": [ + "https://files.pythonhosted.org/packages/bf/19/411a64f01ee971bed3231111b69eb56f9331a769072de479eae7de52296d/charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_bf4475b8": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c", + "urls": [ + "https://files.pythonhosted.org/packages/4c/92/97509850f0d00e9f14a46bc751daabd0ad7765cff29cdfb66c68b6dad57f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_ce031db0": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6", + "urls": [ + "https://files.pythonhosted.org/packages/e2/29/d227805bff72ed6d6cb1ce08eec707f7cfbd9868044893617eb331f16295/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8ff4e7cd": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea", + "urls": [ + "https://files.pythonhosted.org/packages/13/bc/87c2c9f2c144bedfa62f894c3007cd4530ba4b5351acb10dc786428a50f0/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_3710a975": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc", + "urls": [ + "https://files.pythonhosted.org/packages/eb/5b/6f10bad0f6461fa272bfbbdf5d0023b5fb9bc6217c92bf068fa5a99820f5/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_aarch64_47334db7": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594", + "urls": [ + "https://files.pythonhosted.org/packages/d7/a1/493919799446464ed0299c8eef3c3fad0daf1c3cd48bff9263c731b0d9e2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_ppc64le_f1a2f519": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365", + "urls": [ + "https://files.pythonhosted.org/packages/75/d2/0ab54463d3410709c09266dfb416d032a08f97fd7d60e94b8c6ef54ae14b/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_s390x_63bc5c4a": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129", + "urls": [ + "https://files.pythonhosted.org/packages/8d/c9/27e41d481557be53d51e60750b85aa40eaf52b841946b3cdeff363105737/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_x86_64_bcb4f8ea": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236", + "urls": [ + "https://files.pythonhosted.org/packages/ee/44/4f62042ca8cdc0cabf87c0fc00ae27cd8b53ab68be3605ba6d071f742ad3/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_cee4373f": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27", + "urls": [ + "https://files.pythonhosted.org/packages/0b/6e/b13bd47fa9023b3699e94abf565b5a2f0b0be6e9ddac9812182596ee62e4/charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_py3_none_any_fe9f97fe": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "charset_normalizer-3.4.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079", + "urls": [ + "https://files.pythonhosted.org/packages/bf/9b/08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2/charset_normalizer-3.4.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_charset_normalizer_sdist_223217c3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "charset_normalizer-3.4.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "charset-normalizer==3.4.0", + "sha256": "223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e", + "urls": [ + "https://files.pythonhosted.org/packages/f2/4f/e1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e/charset_normalizer-3.4.0.tar.gz" + ] } }, - "com_github_apple_swift_log": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_aarch64_846da004": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5", "urls": [ - "https://github.com/apple/swift-log/archive/1.4.4.tar.gz" + "https://files.pythonhosted.org/packages/2f/78/55356eb9075d0be6e81b59f45c7b48df87f76a20e73893872170471f3ee8/cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_x86_64_0f996e72": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" ], - "sha256": "48fe66426c784c0c20031f15dc17faf9f4c9037c192bfac2f643f65cb2321ba0", - "strip_prefix": "swift-log-1.4.4/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_log/BUILD.overlay" + "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4", + "urls": [ + "https://files.pythonhosted.org/packages/2a/2c/488776a3dc843f95f86d2f957ca0fc3407d0242b50bede7fad1e339be03f/cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] } }, - "com_github_apple_swift_collections": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", + "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_aarch64_f7b178f1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7", "urls": [ - "https://github.com/apple/swift-collections/archive/1.0.4.tar.gz" + "https://files.pythonhosted.org/packages/7c/04/2345ca92f7a22f601a9c62961741ef7dd0127c39f7310dffa0041c80f16f/cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_x86_64_c2e6fc39": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" ], - "sha256": "d9e4c8a91c60fb9c92a04caccbb10ded42f4cb47b26a212bc6b39cc390a4b096", - "strip_prefix": "swift-collections-1.0.4/", - "build_file": "@@rules_swift~//third_party:com_github_apple_swift_collections/BUILD.overlay" + "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405", + "urls": [ + "https://files.pythonhosted.org/packages/ac/25/e715fa0bc24ac2114ed69da33adf451a38abb6f3f24ec207908112e9ba53/cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl" + ] } }, - "build_bazel_rules_swift_local_config": { - "bzlFile": "@@rules_swift~//swift/internal:swift_autoconfiguration.bzl", - "ruleClassName": "swift_autoconfiguration", - "attributes": {} - } - }, - "recordedRepoMappingEntries": [ - [ - "rules_swift~", - "bazel_tools", - "bazel_tools" + "rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_aarch64_e1be4655": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16", + "urls": [ + "https://files.pythonhosted.org/packages/21/ce/b9c9ff56c7164d8e2edfb6c9305045fbc0df4508ccfdb13ee66eb8c95b0e/cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_x86_64_df6b6c6d": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73", + "urls": [ + "https://files.pythonhosted.org/packages/2a/33/b3682992ab2e9476b9c81fff22f02c8b0a1e6e1d49ee1750a67d85fd7ed2/cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_cryptography_sdist_315b9001": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "cryptography-43.0.3.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "cryptography==43.0.3", + "sha256": "315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805", + "urls": [ + "https://files.pythonhosted.org/packages/0d/05/07b55d1fa21ac18c3a8c79f764e2514e6f6a9698f1be44994f5adf0d29db/cryptography-43.0.3.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_docutils_py3_none_any_dafca5b9": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "docutils-0.21.2-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "docutils==0.21.2", + "sha256": "dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", + "urls": [ + "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_docutils_sdist_3a6b1873": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "docutils-0.21.2.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "docutils==0.21.2", + "sha256": "3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", + "urls": [ + "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_idna_py3_none_any_946d195a": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "idna-3.10-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "idna==3.10", + "sha256": "946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", + "urls": [ + "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_idna_sdist_12f65c9b": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "idna-3.10.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "idna==3.10", + "sha256": "12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", + "urls": [ + "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_importlib_metadata_py3_none_any_45e54197": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "importlib_metadata-8.5.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "importlib-metadata==8.5.0", + "sha256": "45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b", + "urls": [ + "https://files.pythonhosted.org/packages/a0/d9/a1e041c5e7caa9a05c925f4bdbdfb7f006d1f74996af53467bc394c97be7/importlib_metadata-8.5.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_importlib_metadata_sdist_71522656": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "importlib_metadata-8.5.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "importlib-metadata==8.5.0", + "sha256": "71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7", + "urls": [ + "https://files.pythonhosted.org/packages/cd/12/33e59336dca5be0c398a7482335911a33aa0e20776128f038019f1a95f1b/importlib_metadata-8.5.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_jaraco_classes_py3_none_any_f662826b": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "jaraco.classes-3.4.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jaraco-classes==3.4.0", + "sha256": "f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790", + "urls": [ + "https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_jaraco_classes_sdist_47a024b5": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "jaraco.classes-3.4.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jaraco-classes==3.4.0", + "sha256": "47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd", + "urls": [ + "https://files.pythonhosted.org/packages/06/c0/ed4a27bc5571b99e3cff68f8a9fa5b56ff7df1c2251cc715a652ddd26402/jaraco.classes-3.4.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_jaraco_context_py3_none_any_f797fc48": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "jaraco.context-6.0.1-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jaraco-context==6.0.1", + "sha256": "f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4", + "urls": [ + "https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_jaraco_context_sdist_9bae4ea5": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "jaraco_context-6.0.1.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jaraco-context==6.0.1", + "sha256": "9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3", + "urls": [ + "https://files.pythonhosted.org/packages/df/ad/f3777b81bf0b6e7bc7514a1656d3e637b2e8e15fab2ce3235730b3e7a4e6/jaraco_context-6.0.1.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_jaraco_functools_py3_none_any_ad159f13": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "jaraco.functools-4.1.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jaraco-functools==4.1.0", + "sha256": "ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649", + "urls": [ + "https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_jaraco_functools_sdist_70f7e0e2": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "jaraco_functools-4.1.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jaraco-functools==4.1.0", + "sha256": "70f7e0e2ae076498e212562325e805204fc092d7b4c17e0e86c959e249701a9d", + "urls": [ + "https://files.pythonhosted.org/packages/ab/23/9894b3df5d0a6eb44611c36aec777823fc2e07740dabbd0b810e19594013/jaraco_functools-4.1.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "jeepney-0.8.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jeepney==0.8.0", + "sha256": "c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755", + "urls": [ + "https://files.pythonhosted.org/packages/ae/72/2a1e2290f1ab1e06f71f3d0f1646c9e4634e70e1d37491535e19266e8dc9/jeepney-0.8.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_jeepney_sdist_5efe48d2": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "jeepney-0.8.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "jeepney==0.8.0", + "sha256": "5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", + "urls": [ + "https://files.pythonhosted.org/packages/d6/f4/154cf374c2daf2020e05c3c6a03c91348d59b23c5366e968feb198306fdf/jeepney-0.8.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_keyring_py3_none_any_5426f817": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "keyring-25.4.1-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "keyring==25.4.1", + "sha256": "5426f817cf7f6f007ba5ec722b1bcad95a75b27d780343772ad76b17cb47b0bf", + "urls": [ + "https://files.pythonhosted.org/packages/83/25/e6d59e5f0a0508d0dca8bb98c7f7fd3772fc943ac3f53d5ab18a218d32c0/keyring-25.4.1-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_keyring_sdist_b07ebc55": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "keyring-25.4.1.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "keyring==25.4.1", + "sha256": "b07ebc55f3e8ed86ac81dd31ef14e81ace9dd9c3d4b5d77a6e9a2016d0d71a1b", + "urls": [ + "https://files.pythonhosted.org/packages/a5/1c/2bdbcfd5d59dc6274ffb175bc29aa07ecbfab196830e0cfbde7bd861a2ea/keyring-25.4.1.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_markdown_it_py_py3_none_any_35521684": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "markdown_it_py-3.0.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "markdown-it-py==3.0.0", + "sha256": "355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", + "urls": [ + "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_markdown_it_py_sdist_e3f60a94": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "markdown-it-py-3.0.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "markdown-it-py==3.0.0", + "sha256": "e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", + "urls": [ + "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_mdurl_py3_none_any_84008a41": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "mdurl-0.1.2-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "mdurl==0.1.2", + "sha256": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", + "urls": [ + "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_mdurl_sdist_bb413d29": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "mdurl-0.1.2.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "mdurl==0.1.2", + "sha256": "bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", + "urls": [ + "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_more_itertools_py3_none_any_037b0d32": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "more_itertools-10.5.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "more-itertools==10.5.0", + "sha256": "037b0d3203ce90cca8ab1defbbdac29d5f993fc20131f3664dc8d6acfa872aef", + "urls": [ + "https://files.pythonhosted.org/packages/48/7e/3a64597054a70f7c86eb0a7d4fc315b8c1ab932f64883a297bdffeb5f967/more_itertools-10.5.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_more_itertools_sdist_5482bfef": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "more-itertools-10.5.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "more-itertools==10.5.0", + "sha256": "5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6", + "urls": [ + "https://files.pythonhosted.org/packages/51/78/65922308c4248e0eb08ebcbe67c95d48615cc6f27854b6f2e57143e9178f/more-itertools-10.5.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_14c5a72e": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86", + "urls": [ + "https://files.pythonhosted.org/packages/b3/89/1daff5d9ba5a95a157c092c7c5f39b8dd2b1ddb4559966f808d31cfb67e0/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_7b7c2a3c": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811", + "urls": [ + "https://files.pythonhosted.org/packages/2c/b6/42fc3c69cabf86b6b81e4c051a9b6e249c5ba9f8155590222c2622961f58/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_aarch64_42c64511": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200", + "urls": [ + "https://files.pythonhosted.org/packages/45/b9/833f385403abaf0023c6547389ec7a7acf141ddd9d1f21573723a6eab39a/nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_armv7l_0411beb0": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164", + "urls": [ + "https://files.pythonhosted.org/packages/05/2b/85977d9e11713b5747595ee61f381bc820749daf83f07b90b6c9964cf932/nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64_5f36b271": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189", + "urls": [ + "https://files.pythonhosted.org/packages/72/f2/5c894d5265ab80a97c68ca36f25c8f6f0308abac649aaf152b74e7e854a8/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64le_34c03fa7": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad", + "urls": [ + "https://files.pythonhosted.org/packages/ab/a7/375afcc710dbe2d64cfbd69e31f82f3e423d43737258af01f6a56d844085/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_s390x_19aaba96": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b", + "urls": [ + "https://files.pythonhosted.org/packages/c2/a8/3bb02d0c60a03ad3a112b76c46971e9480efa98a8946677b5a59f60130ca/nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_x86_64_de3ceed6": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307", + "urls": [ + "https://files.pythonhosted.org/packages/1b/63/6ab90d0e5225ab9780f6c9fb52254fa36b52bb7c188df9201d05b647e5e1/nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_aarch64_f0eca9ca": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe", + "urls": [ + "https://files.pythonhosted.org/packages/a3/da/0c4e282bc3cff4a0adf37005fa1fb42257673fbc1bbf7d1ff639ec3d255a/nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_armv7l_3a157ab1": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a", + "urls": [ + "https://files.pythonhosted.org/packages/de/81/c291231463d21da5f8bba82c8167a6d6893cc5419b0639801ee5d3aeb8a9/nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_x86_64_36c95d4b": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204", + "urls": [ + "https://files.pythonhosted.org/packages/eb/61/73a007c74c37895fdf66e0edcd881f5eaa17a348ff02f4bb4bc906d61085/nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_cp37_abi3_win_amd64_8ce0f819": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "nh3-0.2.18-cp37-abi3-win_amd64.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844", + "urls": [ + "https://files.pythonhosted.org/packages/26/8d/53c5b19c4999bdc6ba95f246f4ef35ca83d7d7423e5e38be43ad66544e5d/nh3-0.2.18-cp37-abi3-win_amd64.whl" + ] + } + }, + "rules_python_publish_deps_311_nh3_sdist_94a16692": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "nh3-0.2.18.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "nh3==0.2.18", + "sha256": "94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4", + "urls": [ + "https://files.pythonhosted.org/packages/62/73/10df50b42ddb547a907deeb2f3c9823022580a7a47281e8eae8e003a9639/nh3-0.2.18.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_pkginfo_py3_none_any_889a6da2": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "pkginfo-1.10.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pkginfo==1.10.0", + "sha256": "889a6da2ed7ffc58ab5b900d888ddce90bce912f2d2de1dc1c26f4cb9fe65097", + "urls": [ + "https://files.pythonhosted.org/packages/56/09/054aea9b7534a15ad38a363a2bd974c20646ab1582a387a95b8df1bfea1c/pkginfo-1.10.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_pkginfo_sdist_5df73835": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "pkginfo-1.10.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pkginfo==1.10.0", + "sha256": "5df73835398d10db79f8eecd5cd86b1f6d29317589ea70796994d49399af6297", + "urls": [ + "https://files.pythonhosted.org/packages/2f/72/347ec5be4adc85c182ed2823d8d1c7b51e13b9a6b0c1aae59582eca652df/pkginfo-1.10.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_pycparser_py3_none_any_c3702b6d": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "pycparser-2.22-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pycparser==2.22", + "sha256": "c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", + "urls": [ + "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_pycparser_sdist_491c8be9": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "pycparser-2.22.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pycparser==2.22", + "sha256": "491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", + "urls": [ + "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_pygments_py3_none_any_b8e6aca0": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "pygments-2.18.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pygments==2.18.0", + "sha256": "b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", + "urls": [ + "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_pygments_sdist_786ff802": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "pygments-2.18.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pygments==2.18.0", + "sha256": "786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", + "urls": [ + "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_pywin32_ctypes_py3_none_any_8a151337": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_windows_x86_64" + ], + "filename": "pywin32_ctypes-0.2.3-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pywin32-ctypes==0.2.3", + "sha256": "8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8", + "urls": [ + "https://files.pythonhosted.org/packages/de/3d/8161f7711c017e01ac9f008dfddd9410dff3674334c233bde66e7ba65bbf/pywin32_ctypes-0.2.3-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_pywin32_ctypes_sdist_d162dc04": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "pywin32-ctypes-0.2.3.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "pywin32-ctypes==0.2.3", + "sha256": "d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755", + "urls": [ + "https://files.pythonhosted.org/packages/85/9f/01a1a99704853cb63f253eea009390c88e7131c67e66a0a02099a8c917cb/pywin32-ctypes-0.2.3.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_readme_renderer_py3_none_any_2fbca89b": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "readme_renderer-44.0-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "readme-renderer==44.0", + "sha256": "2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151", + "urls": [ + "https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_readme_renderer_sdist_8712034e": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "readme_renderer-44.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "readme-renderer==44.0", + "sha256": "8712034eabbfa6805cacf1402b4eeb2a73028f72d1166d6f5cb7f9c047c5d1e1", + "urls": [ + "https://files.pythonhosted.org/packages/5a/a9/104ec9234c8448c4379768221ea6df01260cd6c2ce13182d4eac531c8342/readme_renderer-44.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_requests_py3_none_any_70761cfe": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "requests-2.32.3-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "requests==2.32.3", + "sha256": "70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", + "urls": [ + "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_requests_sdist_55365417": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "requests-2.32.3.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "requests==2.32.3", + "sha256": "55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", + "urls": [ + "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_requests_toolbelt_py2_none_any_cccfdd66": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "requests_toolbelt-1.0.0-py2.py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "requests-toolbelt==1.0.0", + "sha256": "cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", + "urls": [ + "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_requests_toolbelt_sdist_7681a0a3": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "requests-toolbelt-1.0.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "requests-toolbelt==1.0.0", + "sha256": "7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", + "urls": [ + "https://files.pythonhosted.org/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "rfc3986-2.0.0-py2.py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "rfc3986==2.0.0", + "sha256": "50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", + "urls": [ + "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_rfc3986_sdist_97aacf9d": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "rfc3986-2.0.0.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "rfc3986==2.0.0", + "sha256": "97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c", + "urls": [ + "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_rich_py3_none_any_9836f509": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "rich-13.9.3-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "rich==13.9.3", + "sha256": "9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283", + "urls": [ + "https://files.pythonhosted.org/packages/9a/e2/10e9819cf4a20bd8ea2f5dabafc2e6bf4a78d6a0965daeb60a4b34d1c11f/rich-13.9.3-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_rich_sdist_bc1e01b8": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "rich-13.9.3.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "rich==13.9.3", + "sha256": "bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e", + "urls": [ + "https://files.pythonhosted.org/packages/d9/e9/cf9ef5245d835065e6673781dbd4b8911d352fb770d56cf0879cf11b7ee1/rich-13.9.3.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "filename": "SecretStorage-3.3.3-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "secretstorage==3.3.3", + "sha256": "f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99", + "urls": [ + "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_secretstorage_sdist_2403533e": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "SecretStorage-3.3.3.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "secretstorage==3.3.3", + "sha256": "2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", + "urls": [ + "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_twine_py3_none_any_215dbe7b": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "twine-5.1.1-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "twine==5.1.1", + "sha256": "215dbe7b4b94c2c50a7315c0275d2258399280fbb7d04182c7e55e24b5f93997", + "urls": [ + "https://files.pythonhosted.org/packages/5d/ec/00f9d5fd040ae29867355e559a94e9a8429225a0284a3f5f091a3878bfc0/twine-5.1.1-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_twine_sdist_9aa08251": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "twine-5.1.1.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "twine==5.1.1", + "sha256": "9aa0825139c02b3434d913545c7b847a21c835e11597f5255842d457da2322db", + "urls": [ + "https://files.pythonhosted.org/packages/77/68/bd982e5e949ef8334e6f7dcf76ae40922a8750aa2e347291ae1477a4782b/twine-5.1.1.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_urllib3_py3_none_any_ca899ca0": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "urllib3-2.2.3-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "urllib3==2.2.3", + "sha256": "ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", + "urls": [ + "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_urllib3_sdist_e7d814a8": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "urllib3-2.2.3.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "urllib3==2.2.3", + "sha256": "e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", + "urls": [ + "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz" + ] + } + }, + "rules_python_publish_deps_311_zipp_py3_none_any_a817ac80": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "filename": "zipp-3.20.2-py3-none-any.whl", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "zipp==3.20.2", + "sha256": "a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350", + "urls": [ + "https://files.pythonhosted.org/packages/62/8b/5ba542fa83c90e09eac972fc9baca7a88e7e7ca4b221a89251954019308b/zipp-3.20.2-py3-none-any.whl" + ] + } + }, + "rules_python_publish_deps_311_zipp_sdist_bc9eb26f": { + "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "attributes": { + "dep_template": "@rules_python_publish_deps//{name}:{target}", + "experimental_target_platforms": [ + "cp311_linux_aarch64", + "cp311_linux_arm", + "cp311_linux_ppc", + "cp311_linux_s390x", + "cp311_linux_x86_64", + "cp311_osx_aarch64", + "cp311_osx_x86_64", + "cp311_windows_x86_64" + ], + "extra_pip_args": [ + "--index-url", + "https://pypi.org/simple" + ], + "filename": "zipp-3.20.2.tar.gz", + "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "repo": "rules_python_publish_deps_311", + "requirement": "zipp==3.20.2", + "sha256": "bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29", + "urls": [ + "https://files.pythonhosted.org/packages/54/bf/5c0000c44ebc80123ecbdddba1f5dcd94a5ada602a9c225d84b5aaa55e86/zipp-3.20.2.tar.gz" + ] + } + }, + "grpc_python_dependencies": { + "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "attributes": { + "repo_name": "grpc_python_dependencies", + "extra_hub_aliases": {}, + "whl_map": { + "absl_py": "{\"grpc_python_dependencies_310_absl_py\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_absl_py\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_absl_py\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_absl_py\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_absl_py\":[{\"version\":\"3.9\"}]}", + "cachetools": "{\"grpc_python_dependencies_310_cachetools\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_cachetools\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_cachetools\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_cachetools\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_cachetools\":[{\"version\":\"3.9\"}]}", + "certifi": "{\"grpc_python_dependencies_310_certifi\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_certifi\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_certifi\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_certifi\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_certifi\":[{\"version\":\"3.9\"}]}", + "chardet": "{\"grpc_python_dependencies_310_chardet\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_chardet\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_chardet\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_chardet\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_chardet\":[{\"version\":\"3.9\"}]}", + "charset_normalizer": "{\"grpc_python_dependencies_310_charset_normalizer\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_charset_normalizer\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_charset_normalizer\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_charset_normalizer\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_charset_normalizer\":[{\"version\":\"3.9\"}]}", + "coverage": "{\"grpc_python_dependencies_310_coverage\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_coverage\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_coverage\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_coverage\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_coverage\":[{\"version\":\"3.9\"}]}", + "cython": "{\"grpc_python_dependencies_310_cython\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_cython\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_cython\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_cython\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_cython\":[{\"version\":\"3.9\"}]}", + "deprecated": "{\"grpc_python_dependencies_310_deprecated\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_deprecated\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_deprecated\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_deprecated\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_deprecated\":[{\"version\":\"3.9\"}]}", + "gevent": "{\"grpc_python_dependencies_310_gevent\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_gevent\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_gevent\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_gevent\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_gevent\":[{\"version\":\"3.9\"}]}", + "google_api_core": "{\"grpc_python_dependencies_310_google_api_core\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_google_api_core\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_google_api_core\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_google_api_core\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_google_api_core\":[{\"version\":\"3.9\"}]}", + "google_auth": "{\"grpc_python_dependencies_310_google_auth\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_google_auth\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_google_auth\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_google_auth\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_google_auth\":[{\"version\":\"3.9\"}]}", + "google_cloud_monitoring": "{\"grpc_python_dependencies_310_google_cloud_monitoring\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_google_cloud_monitoring\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_google_cloud_monitoring\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_google_cloud_monitoring\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_google_cloud_monitoring\":[{\"version\":\"3.9\"}]}", + "google_cloud_trace": "{\"grpc_python_dependencies_310_google_cloud_trace\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_google_cloud_trace\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_google_cloud_trace\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_google_cloud_trace\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_google_cloud_trace\":[{\"version\":\"3.9\"}]}", + "googleapis_common_protos": "{\"grpc_python_dependencies_310_googleapis_common_protos\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_googleapis_common_protos\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_googleapis_common_protos\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_googleapis_common_protos\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_googleapis_common_protos\":[{\"version\":\"3.9\"}]}", + "greenlet": "{\"grpc_python_dependencies_310_greenlet\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_greenlet\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_greenlet\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_greenlet\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_greenlet\":[{\"version\":\"3.9\"}]}", + "idna": "{\"grpc_python_dependencies_310_idna\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_idna\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_idna\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_idna\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_idna\":[{\"version\":\"3.9\"}]}", + "importlib_metadata": "{\"grpc_python_dependencies_310_importlib_metadata\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_importlib_metadata\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_importlib_metadata\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_importlib_metadata\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_importlib_metadata\":[{\"version\":\"3.9\"}]}", + "oauth2client": "{\"grpc_python_dependencies_310_oauth2client\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_oauth2client\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_oauth2client\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_oauth2client\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_oauth2client\":[{\"version\":\"3.9\"}]}", + "opencensus_context": "{\"grpc_python_dependencies_310_opencensus_context\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_opencensus_context\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_opencensus_context\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_opencensus_context\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_opencensus_context\":[{\"version\":\"3.9\"}]}", + "opentelemetry_api": "{\"grpc_python_dependencies_310_opentelemetry_api\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_opentelemetry_api\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_opentelemetry_api\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_opentelemetry_api\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_opentelemetry_api\":[{\"version\":\"3.9\"}]}", + "opentelemetry_exporter_prometheus": "{\"grpc_python_dependencies_310_opentelemetry_exporter_prometheus\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_opentelemetry_exporter_prometheus\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_opentelemetry_exporter_prometheus\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_opentelemetry_exporter_prometheus\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_opentelemetry_exporter_prometheus\":[{\"version\":\"3.9\"}]}", + "opentelemetry_resourcedetector_gcp": "{\"grpc_python_dependencies_310_opentelemetry_resourcedetector_gcp\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_opentelemetry_resourcedetector_gcp\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_opentelemetry_resourcedetector_gcp\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_opentelemetry_resourcedetector_gcp\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_opentelemetry_resourcedetector_gcp\":[{\"version\":\"3.9\"}]}", + "opentelemetry_sdk": "{\"grpc_python_dependencies_310_opentelemetry_sdk\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_opentelemetry_sdk\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_opentelemetry_sdk\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_opentelemetry_sdk\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_opentelemetry_sdk\":[{\"version\":\"3.9\"}]}", + "opentelemetry_semantic_conventions": "{\"grpc_python_dependencies_310_opentelemetry_semantic_conventions\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_opentelemetry_semantic_conventions\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_opentelemetry_semantic_conventions\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_opentelemetry_semantic_conventions\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_opentelemetry_semantic_conventions\":[{\"version\":\"3.9\"}]}", + "prometheus_client": "{\"grpc_python_dependencies_310_prometheus_client\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_prometheus_client\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_prometheus_client\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_prometheus_client\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_prometheus_client\":[{\"version\":\"3.9\"}]}", + "proto_plus": "{\"grpc_python_dependencies_310_proto_plus\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_proto_plus\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_proto_plus\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_proto_plus\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_proto_plus\":[{\"version\":\"3.9\"}]}", + "protobuf": "{\"grpc_python_dependencies_310_protobuf\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_protobuf\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_protobuf\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_protobuf\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_protobuf\":[{\"version\":\"3.9\"}]}", + "pyasn1": "{\"grpc_python_dependencies_310_pyasn1\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_pyasn1\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_pyasn1\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_pyasn1\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_pyasn1\":[{\"version\":\"3.9\"}]}", + "pyasn1_modules": "{\"grpc_python_dependencies_310_pyasn1_modules\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_pyasn1_modules\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_pyasn1_modules\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_pyasn1_modules\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_pyasn1_modules\":[{\"version\":\"3.9\"}]}", + "requests": "{\"grpc_python_dependencies_310_requests\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_requests\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_requests\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_requests\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_requests\":[{\"version\":\"3.9\"}]}", + "rsa": "{\"grpc_python_dependencies_310_rsa\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_rsa\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_rsa\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_rsa\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_rsa\":[{\"version\":\"3.9\"}]}", + "setuptools": "{\"grpc_python_dependencies_310_setuptools\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_setuptools\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_setuptools\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_setuptools\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_setuptools\":[{\"version\":\"3.9\"}]}", + "typing_extensions": "{\"grpc_python_dependencies_310_typing_extensions\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_typing_extensions\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_typing_extensions\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_typing_extensions\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_typing_extensions\":[{\"version\":\"3.9\"}]}", + "urllib3": "{\"grpc_python_dependencies_310_urllib3\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_urllib3\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_urllib3\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_urllib3\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_urllib3\":[{\"version\":\"3.9\"}]}", + "wheel": "{\"grpc_python_dependencies_310_wheel\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_wheel\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_wheel\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_wheel\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_wheel\":[{\"version\":\"3.9\"}]}", + "wrapt": "{\"grpc_python_dependencies_310_wrapt\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_wrapt\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_wrapt\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_wrapt\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_wrapt\":[{\"version\":\"3.9\"}]}", + "zipp": "{\"grpc_python_dependencies_310_zipp\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_zipp\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_zipp\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_zipp\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_zipp\":[{\"version\":\"3.9\"}]}", + "zope_event": "{\"grpc_python_dependencies_310_zope_event\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_zope_event\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_zope_event\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_zope_event\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_zope_event\":[{\"version\":\"3.9\"}]}", + "zope_interface": "{\"grpc_python_dependencies_310_zope_interface\":[{\"version\":\"3.10\"}],\"grpc_python_dependencies_311_zope_interface\":[{\"version\":\"3.11\"}],\"grpc_python_dependencies_312_zope_interface\":[{\"version\":\"3.12\"}],\"grpc_python_dependencies_38_zope_interface\":[{\"version\":\"3.8\"}],\"grpc_python_dependencies_39_zope_interface\":[{\"version\":\"3.9\"}]}" + }, + "packages": [ + "absl_py", + "cachetools", + "certifi", + "chardet", + "charset_normalizer", + "coverage", + "cython", + "deprecated", + "gevent", + "google_api_core", + "google_auth", + "google_cloud_monitoring", + "google_cloud_trace", + "googleapis_common_protos", + "greenlet", + "idna", + "importlib_metadata", + "oauth2client", + "opencensus_context", + "opentelemetry_api", + "opentelemetry_exporter_prometheus", + "opentelemetry_resourcedetector_gcp", + "opentelemetry_sdk", + "opentelemetry_semantic_conventions", + "prometheus_client", + "proto_plus", + "protobuf", + "pyasn1", + "pyasn1_modules", + "requests", + "rsa", + "setuptools", + "typing_extensions", + "urllib3", + "wheel", + "wrapt", + "zipp", + "zope_event", + "zope_interface" + ], + "groups": {} + } + }, + "pip": { + "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "attributes": { + "repo_name": "pip", + "extra_hub_aliases": {}, + "whl_map": {}, + "packages": [], + "groups": {} + } + }, + "pip_deps": { + "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "attributes": { + "repo_name": "pip_deps", + "extra_hub_aliases": {}, + "whl_map": { + "numpy": "{\"pip_deps_310_numpy\":[{\"version\":\"3.10\"}],\"pip_deps_311_numpy\":[{\"version\":\"3.11\"}],\"pip_deps_312_numpy\":[{\"version\":\"3.12\"}],\"pip_deps_38_numpy\":[{\"version\":\"3.8\"}],\"pip_deps_39_numpy\":[{\"version\":\"3.9\"}]}", + "setuptools": "{\"pip_deps_310_setuptools\":[{\"version\":\"3.10\"}],\"pip_deps_311_setuptools\":[{\"version\":\"3.11\"}],\"pip_deps_312_setuptools\":[{\"version\":\"3.12\"}],\"pip_deps_38_setuptools\":[{\"version\":\"3.8\"}],\"pip_deps_39_setuptools\":[{\"version\":\"3.9\"}]}" + }, + "packages": [ + "numpy", + "setuptools" + ], + "groups": {} + } + }, + "rules_fuzzing_py_deps": { + "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "attributes": { + "repo_name": "rules_fuzzing_py_deps", + "extra_hub_aliases": {}, + "whl_map": { + "absl_py": "{\"rules_fuzzing_py_deps_310_absl_py\":[{\"version\":\"3.10\"}],\"rules_fuzzing_py_deps_311_absl_py\":[{\"version\":\"3.11\"}],\"rules_fuzzing_py_deps_312_absl_py\":[{\"version\":\"3.12\"}],\"rules_fuzzing_py_deps_38_absl_py\":[{\"version\":\"3.8\"}],\"rules_fuzzing_py_deps_39_absl_py\":[{\"version\":\"3.9\"}]}", + "six": "{\"rules_fuzzing_py_deps_310_six\":[{\"version\":\"3.10\"}],\"rules_fuzzing_py_deps_311_six\":[{\"version\":\"3.11\"}],\"rules_fuzzing_py_deps_312_six\":[{\"version\":\"3.12\"}],\"rules_fuzzing_py_deps_38_six\":[{\"version\":\"3.8\"}],\"rules_fuzzing_py_deps_39_six\":[{\"version\":\"3.9\"}]}" + }, + "packages": [ + "absl_py", + "six" + ], + "groups": {} + } + }, + "rules_python_publish_deps": { + "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "attributes": { + "repo_name": "rules_python_publish_deps", + "extra_hub_aliases": {}, + "whl_map": { + "backports_tarfile": "{\"rules_python_publish_deps_311_backports_tarfile_py3_none_any_77e284d7\":[{\"filename\":\"backports.tarfile-1.2.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_backports_tarfile_sdist_d75e02c2\":[{\"filename\":\"backports_tarfile-1.2.0.tar.gz\",\"version\":\"3.11\"}]}", + "certifi": "{\"rules_python_publish_deps_311_certifi_py3_none_any_922820b5\":[{\"filename\":\"certifi-2024.8.30-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_certifi_sdist_bec941d2\":[{\"filename\":\"certifi-2024.8.30.tar.gz\",\"version\":\"3.11\"}]}", + "cffi": "{\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_a1ed2dd2\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_46bf4316\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_s390x_a24ed04c\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_610faea7\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_aarch64_a9b15d49\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_fc48c783\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_sdist_1c39c601\":[{\"filename\":\"cffi-1.17.1.tar.gz\",\"version\":\"3.11\"}]}", + "charset_normalizer": "{\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0d99dd8f\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_c57516e5\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_6dba5d19\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_bf4475b8\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_ce031db0\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8ff4e7cd\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_3710a975\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_aarch64_47334db7\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_ppc64le_f1a2f519\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_s390x_63bc5c4a\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_x86_64_bcb4f8ea\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_cee4373f\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_py3_none_any_fe9f97fe\":[{\"filename\":\"charset_normalizer-3.4.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_sdist_223217c3\":[{\"filename\":\"charset_normalizer-3.4.0.tar.gz\",\"version\":\"3.11\"}]}", + "cryptography": "{\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_aarch64_846da004\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_x86_64_0f996e72\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_aarch64_f7b178f1\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_x86_64_c2e6fc39\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_aarch64_e1be4655\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_x86_64_df6b6c6d\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_sdist_315b9001\":[{\"filename\":\"cryptography-43.0.3.tar.gz\",\"version\":\"3.11\"}]}", + "docutils": "{\"rules_python_publish_deps_311_docutils_py3_none_any_dafca5b9\":[{\"filename\":\"docutils-0.21.2-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_docutils_sdist_3a6b1873\":[{\"filename\":\"docutils-0.21.2.tar.gz\",\"version\":\"3.11\"}]}", + "idna": "{\"rules_python_publish_deps_311_idna_py3_none_any_946d195a\":[{\"filename\":\"idna-3.10-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_idna_sdist_12f65c9b\":[{\"filename\":\"idna-3.10.tar.gz\",\"version\":\"3.11\"}]}", + "importlib_metadata": "{\"rules_python_publish_deps_311_importlib_metadata_py3_none_any_45e54197\":[{\"filename\":\"importlib_metadata-8.5.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_importlib_metadata_sdist_71522656\":[{\"filename\":\"importlib_metadata-8.5.0.tar.gz\",\"version\":\"3.11\"}]}", + "jaraco_classes": "{\"rules_python_publish_deps_311_jaraco_classes_py3_none_any_f662826b\":[{\"filename\":\"jaraco.classes-3.4.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jaraco_classes_sdist_47a024b5\":[{\"filename\":\"jaraco.classes-3.4.0.tar.gz\",\"version\":\"3.11\"}]}", + "jaraco_context": "{\"rules_python_publish_deps_311_jaraco_context_py3_none_any_f797fc48\":[{\"filename\":\"jaraco.context-6.0.1-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jaraco_context_sdist_9bae4ea5\":[{\"filename\":\"jaraco_context-6.0.1.tar.gz\",\"version\":\"3.11\"}]}", + "jaraco_functools": "{\"rules_python_publish_deps_311_jaraco_functools_py3_none_any_ad159f13\":[{\"filename\":\"jaraco.functools-4.1.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jaraco_functools_sdist_70f7e0e2\":[{\"filename\":\"jaraco_functools-4.1.0.tar.gz\",\"version\":\"3.11\"}]}", + "jeepney": "{\"rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad\":[{\"filename\":\"jeepney-0.8.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jeepney_sdist_5efe48d2\":[{\"filename\":\"jeepney-0.8.0.tar.gz\",\"version\":\"3.11\"}]}", + "keyring": "{\"rules_python_publish_deps_311_keyring_py3_none_any_5426f817\":[{\"filename\":\"keyring-25.4.1-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_keyring_sdist_b07ebc55\":[{\"filename\":\"keyring-25.4.1.tar.gz\",\"version\":\"3.11\"}]}", + "markdown_it_py": "{\"rules_python_publish_deps_311_markdown_it_py_py3_none_any_35521684\":[{\"filename\":\"markdown_it_py-3.0.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_markdown_it_py_sdist_e3f60a94\":[{\"filename\":\"markdown-it-py-3.0.0.tar.gz\",\"version\":\"3.11\"}]}", + "mdurl": "{\"rules_python_publish_deps_311_mdurl_py3_none_any_84008a41\":[{\"filename\":\"mdurl-0.1.2-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_mdurl_sdist_bb413d29\":[{\"filename\":\"mdurl-0.1.2.tar.gz\",\"version\":\"3.11\"}]}", + "more_itertools": "{\"rules_python_publish_deps_311_more_itertools_py3_none_any_037b0d32\":[{\"filename\":\"more_itertools-10.5.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_more_itertools_sdist_5482bfef\":[{\"filename\":\"more-itertools-10.5.0.tar.gz\",\"version\":\"3.11\"}]}", + "nh3": "{\"rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_14c5a72e\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_7b7c2a3c\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_aarch64_42c64511\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_armv7l_0411beb0\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64_5f36b271\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64le_34c03fa7\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_s390x_19aaba96\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_x86_64_de3ceed6\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_aarch64_f0eca9ca\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_armv7l_3a157ab1\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_x86_64_36c95d4b\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_win_amd64_8ce0f819\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-win_amd64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_sdist_94a16692\":[{\"filename\":\"nh3-0.2.18.tar.gz\",\"version\":\"3.11\"}]}", + "pkginfo": "{\"rules_python_publish_deps_311_pkginfo_py3_none_any_889a6da2\":[{\"filename\":\"pkginfo-1.10.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pkginfo_sdist_5df73835\":[{\"filename\":\"pkginfo-1.10.0.tar.gz\",\"version\":\"3.11\"}]}", + "pycparser": "{\"rules_python_publish_deps_311_pycparser_py3_none_any_c3702b6d\":[{\"filename\":\"pycparser-2.22-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pycparser_sdist_491c8be9\":[{\"filename\":\"pycparser-2.22.tar.gz\",\"version\":\"3.11\"}]}", + "pygments": "{\"rules_python_publish_deps_311_pygments_py3_none_any_b8e6aca0\":[{\"filename\":\"pygments-2.18.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pygments_sdist_786ff802\":[{\"filename\":\"pygments-2.18.0.tar.gz\",\"version\":\"3.11\"}]}", + "pywin32_ctypes": "{\"rules_python_publish_deps_311_pywin32_ctypes_py3_none_any_8a151337\":[{\"filename\":\"pywin32_ctypes-0.2.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pywin32_ctypes_sdist_d162dc04\":[{\"filename\":\"pywin32-ctypes-0.2.3.tar.gz\",\"version\":\"3.11\"}]}", + "readme_renderer": "{\"rules_python_publish_deps_311_readme_renderer_py3_none_any_2fbca89b\":[{\"filename\":\"readme_renderer-44.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_readme_renderer_sdist_8712034e\":[{\"filename\":\"readme_renderer-44.0.tar.gz\",\"version\":\"3.11\"}]}", + "requests": "{\"rules_python_publish_deps_311_requests_py3_none_any_70761cfe\":[{\"filename\":\"requests-2.32.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_requests_sdist_55365417\":[{\"filename\":\"requests-2.32.3.tar.gz\",\"version\":\"3.11\"}]}", + "requests_toolbelt": "{\"rules_python_publish_deps_311_requests_toolbelt_py2_none_any_cccfdd66\":[{\"filename\":\"requests_toolbelt-1.0.0-py2.py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_requests_toolbelt_sdist_7681a0a3\":[{\"filename\":\"requests-toolbelt-1.0.0.tar.gz\",\"version\":\"3.11\"}]}", + "rfc3986": "{\"rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b\":[{\"filename\":\"rfc3986-2.0.0-py2.py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_rfc3986_sdist_97aacf9d\":[{\"filename\":\"rfc3986-2.0.0.tar.gz\",\"version\":\"3.11\"}]}", + "rich": "{\"rules_python_publish_deps_311_rich_py3_none_any_9836f509\":[{\"filename\":\"rich-13.9.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_rich_sdist_bc1e01b8\":[{\"filename\":\"rich-13.9.3.tar.gz\",\"version\":\"3.11\"}]}", + "secretstorage": "{\"rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662\":[{\"filename\":\"SecretStorage-3.3.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_secretstorage_sdist_2403533e\":[{\"filename\":\"SecretStorage-3.3.3.tar.gz\",\"version\":\"3.11\"}]}", + "twine": "{\"rules_python_publish_deps_311_twine_py3_none_any_215dbe7b\":[{\"filename\":\"twine-5.1.1-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_twine_sdist_9aa08251\":[{\"filename\":\"twine-5.1.1.tar.gz\",\"version\":\"3.11\"}]}", + "urllib3": "{\"rules_python_publish_deps_311_urllib3_py3_none_any_ca899ca0\":[{\"filename\":\"urllib3-2.2.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_urllib3_sdist_e7d814a8\":[{\"filename\":\"urllib3-2.2.3.tar.gz\",\"version\":\"3.11\"}]}", + "zipp": "{\"rules_python_publish_deps_311_zipp_py3_none_any_a817ac80\":[{\"filename\":\"zipp-3.20.2-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_zipp_sdist_bc9eb26f\":[{\"filename\":\"zipp-3.20.2.tar.gz\",\"version\":\"3.11\"}]}" + }, + "packages": [ + "backports_tarfile", + "certifi", + "charset_normalizer", + "docutils", + "idna", + "importlib_metadata", + "jaraco_classes", + "jaraco_context", + "jaraco_functools", + "keyring", + "markdown_it_py", + "mdurl", + "more_itertools", + "nh3", + "pkginfo", + "pygments", + "readme_renderer", + "requests", + "requests_toolbelt", + "rfc3986", + "rich", + "twine", + "urllib3", + "zipp" + ], + "groups": {} + } + } + }, + "moduleExtensionMetadata": { + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_python+", + "bazel_features", + "bazel_features+" + ], + [ + "rules_python+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_python+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_python+", + "pypi__build", + "rules_python++internal_deps+pypi__build" + ], + [ + "rules_python+", + "pypi__click", + "rules_python++internal_deps+pypi__click" + ], + [ + "rules_python+", + "pypi__colorama", + "rules_python++internal_deps+pypi__colorama" + ], + [ + "rules_python+", + "pypi__importlib_metadata", + "rules_python++internal_deps+pypi__importlib_metadata" + ], + [ + "rules_python+", + "pypi__installer", + "rules_python++internal_deps+pypi__installer" + ], + [ + "rules_python+", + "pypi__more_itertools", + "rules_python++internal_deps+pypi__more_itertools" + ], + [ + "rules_python+", + "pypi__packaging", + "rules_python++internal_deps+pypi__packaging" + ], + [ + "rules_python+", + "pypi__pep517", + "rules_python++internal_deps+pypi__pep517" + ], + [ + "rules_python+", + "pypi__pip", + "rules_python++internal_deps+pypi__pip" + ], + [ + "rules_python+", + "pypi__pip_tools", + "rules_python++internal_deps+pypi__pip_tools" + ], + [ + "rules_python+", + "pypi__pyproject_hooks", + "rules_python++internal_deps+pypi__pyproject_hooks" + ], + [ + "rules_python+", + "pypi__setuptools", + "rules_python++internal_deps+pypi__setuptools" + ], + [ + "rules_python+", + "pypi__tomli", + "rules_python++internal_deps+pypi__tomli" + ], + [ + "rules_python+", + "pypi__wheel", + "rules_python++internal_deps+pypi__wheel" + ], + [ + "rules_python+", + "pypi__zipp", + "rules_python++internal_deps+pypi__zipp" + ], + [ + "rules_python+", + "pythons_hub", + "rules_python++python+pythons_hub" + ], + [ + "rules_python++python+pythons_hub", + "python_3_10_host", + "rules_python++python+python_3_10_host" + ], + [ + "rules_python++python+pythons_hub", + "python_3_11_host", + "rules_python++python+python_3_11_host" + ], + [ + "rules_python++python+pythons_hub", + "python_3_12_host", + "rules_python++python+python_3_12_host" + ], + [ + "rules_python++python+pythons_hub", + "python_3_8_host", + "rules_python++python+python_3_8_host" ], [ - "rules_swift~", - "build_bazel_rules_swift", - "rules_swift~" + "rules_python++python+pythons_hub", + "python_3_9_host", + "rules_python++python+python_3_9_host" ] ] } diff --git a/go.mod b/go.mod index 49d14c04..19c229d6 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,18 @@ module github.com/EngFlow/example -go 1.21.2 +go 1.23.4 -require github.com/google/go-cmp v0.6.0 +require ( + github.com/google/go-cmp v0.6.0 + google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f + google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f + google.golang.org/grpc v1.69.4 +) + +require ( + github.com/golang/protobuf v1.5.4 // indirect + golang.org/x/net v0.33.0 // indirect + golang.org/x/sys v0.28.0 // indirect + golang.org/x/text v0.21.0 // indirect + google.golang.org/protobuf v1.36.3 // indirect +) diff --git a/go.sum b/go.sum index 5a8d551d..12c80cd0 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,56 @@ +github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= +github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +go.opentelemetry.io/otel v1.31.0 h1:NsJcKPIW0D0H3NgzPDHmo0WW6SptzPdqg/L1zsIm2hY= +go.opentelemetry.io/otel v1.31.0/go.mod h1:O0C14Yl9FgkjqcCZAsE053C13OaddMYr/hz6clDkEJE= +go.opentelemetry.io/otel/metric v1.31.0 h1:FSErL0ATQAmYHUIzSezZibnyVlft1ybhy4ozRPcF2fE= +go.opentelemetry.io/otel/metric v1.31.0/go.mod h1:C3dEloVbLuYoX41KpmAhOqNriGbA+qqH6PQ5E5mUfnY= +go.opentelemetry.io/otel/sdk v1.31.0 h1:xLY3abVHYZ5HSfOg3l2E5LUj2Cwva5Y7yGxnSW9H5Gk= +go.opentelemetry.io/otel/sdk v1.31.0/go.mod h1:TfRbMdhvxIIr/B2N2LQW2S5v9m3gOQ/08KsbbO5BPT0= +go.opentelemetry.io/otel/sdk/metric v1.31.0 h1:i9hxxLJF/9kkvfHppyLL55aW7iIJz4JjxTeYusH7zMc= +go.opentelemetry.io/otel/sdk/metric v1.31.0/go.mod h1:CRInTMVvNhUKgSAMbKyTMxqOBC0zgyxzW55lZzX43Y8= +go.opentelemetry.io/otel/trace v1.31.0 h1:ffjsj1aRouKewfr85U2aGagJ46+MvodynlQ1HYdmJys= +go.opentelemetry.io/otel/trace v1.31.0/go.mod h1:TXZkRk7SM2ZQLtR6eoAWQFIHPvzQ06FJAsO1tJg480A= +golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= +golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= +golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= +golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= +golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/genproto v0.0.0-20250115164207-1a7da9e5054f h1:387Y+JbxF52bmesc8kq1NyYIp33dnxCw6eiA7JMsTmw= +google.golang.org/genproto v0.0.0-20250115164207-1a7da9e5054f/go.mod h1:0joYwWwLQh18AOj8zMYeZLjzuqcYTU3/nC5JdCvC3JI= +google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97 h1:W18sezcAYs+3tDZX4F80yctqa12jcP1PUS2gQu1zTPU= +google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go.mod h1:iargEX0SFPm3xcfMI0d1domjg0ZF4Aa0p2awqyxhvF0= +google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 h1:7whR9kGa5LUwFtpLm2ArCEejtnxlGeLbAyjFY8sGNFw= +google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157/go.mod h1:99sLkeliLXfdj2J75X3Ho+rrVCaJze0uwN7zDDkjPVU= +google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f h1:gap6+3Gk41EItBuyi4XX/bp4oqJ3UwuIMl25yGinuAA= +google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f/go.mod h1:Ic02D47M+zbarjYYUlK57y316f2MoN0gjAwI3f2S95o= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 h1:3UsHvIr4Wc2aW4brOaSCmcxh9ksica6fHEr8P1XhkYw= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422/go.mod h1:3ENsm/5D1mzDyhpzeRi1NR784I0BcofWBoSc5QqqMK4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f h1:OxYkA3wjPsZyBylwymxSHa7ViiW1Sml4ToBrncvFehI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f/go.mod h1:+2Yz8+CLJbIfL9z73EW45avw8Lmge3xVElCP9zEKi50= +google.golang.org/grpc v1.55.0 h1:3Oj82/tFSCeUrRTg/5E/7d/W5A1tj6Ky1ABAuZuv5ag= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= +google.golang.org/grpc v1.60.0 h1:6FQAR0kM31P6MRdeluor2w2gPaS4SVNrD/DNTxrQ15k= +google.golang.org/grpc v1.60.0/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= +google.golang.org/grpc v1.65.0 h1:bs/cUb4lp1G5iImFFd3u5ixQzweKizoZJAwBNLR42lc= +google.golang.org/grpc v1.65.0/go.mod h1:WgYC2ypjlB0EiQi6wdKixMqukr6lBc0Vo+oOgjrM5ZQ= +google.golang.org/grpc v1.69.4 h1:MF5TftSMkd8GLw/m0KM6V8CMOCY6NZ1NQDPGFgbTt4A= +google.golang.org/grpc v1.69.4/go.mod h1:vyjdE6jLBI76dgpDojsFGNaHlxdjXN9ghpnd2o7JGZ4= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.36.3 h1:82DV7MYdb8anAVi3qge1wSnMDrnKK7ebr+I0hHRN1BU= +google.golang.org/protobuf v1.36.3/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= diff --git a/go/proto/BUILD b/go/proto/BUILD new file mode 100644 index 00000000..7ccf979d --- /dev/null +++ b/go/proto/BUILD @@ -0,0 +1,38 @@ +load("@rules_go//proto:def.bzl", "go_proto_library") + +package(default_visibility = ["//go:__subpackages__"]) + +go_proto_library( + name = "notification_queue_go_proto", + compilers = [ + "@rules_go//proto:go_grpc_v2", + "@rules_go//proto:go_proto", + ], + importpath = "github.com/EngFlow/engflowapis-go/engflow/notification/v1", + protos = ["@engflowapis//engflow/notification/v1"], + deps = [ + ":api_go_proto", + "@org_golang_google_genproto_googleapis_rpc//status", + ], +) + +go_proto_library( + name = "resourceusage_go_proto", + importpath = "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1", + protos = ["@engflowapis//engflow/resourceusage/v1"], + deps = [":type_go_proto"], +) + +go_proto_library( + name = "api_go_proto", + importpath = "github.com/EngFlow/engflowapis-go/engflow/api", + protos = ["@engflowapis//engflow/api"], + deps = [":type_go_proto"], +) + +go_proto_library( + name = "type_go_proto", + importpath = "github.com/EngFlow/engflowapis-go/engflow/type", + protos = ["@engflowapis//engflow/type"], + deps = ["@org_golang_google_genproto_googleapis_api//annotations"], +) diff --git a/go/resourceusage/BUILD b/go/resourceusage/BUILD new file mode 100644 index 00000000..d12e448d --- /dev/null +++ b/go/resourceusage/BUILD @@ -0,0 +1,22 @@ +load("@rules_go//go:def.bzl", "go_binary", "go_library") + +go_library( + name = "resourceusage_lib", + srcs = ["resourceusage.go"], + importpath = "github.com/EngFlow/example/go/resourceusage", + visibility = ["//visibility:private"], + deps = [ + "//go/proto:notification_queue_go_proto", + "//go/proto:resourceusage_go_proto", + "@org_golang_google_grpc//:grpc", + "@org_golang_google_grpc//codes", + "@org_golang_google_grpc//credentials", + "@org_golang_google_grpc//status", + ], +) + +go_binary( + name = "resourceusage", + embed = [":resourceusage_lib"], + visibility = ["//visibility:public"], +) diff --git a/go/resourceusage/README.md b/go/resourceusage/README.md new file mode 100644 index 00000000..bcf99295 --- /dev/null +++ b/go/resourceusage/README.md @@ -0,0 +1,4 @@ +resourceusage streams Resource Usage API events from an EngFlow server and +prints them to stdout as JSON. + +Run with -h or -help for instructions. diff --git a/go/resourceusage/resourceusage.go b/go/resourceusage/resourceusage.go new file mode 100644 index 00000000..0361685e --- /dev/null +++ b/go/resourceusage/resourceusage.go @@ -0,0 +1,334 @@ +package main + +import ( + "context" + "crypto/tls" + "encoding/json" + "errors" + "flag" + "fmt" + "io" + "os" + "os/signal" + "time" + + notificationv1 "github.com/EngFlow/engflowapis-go/engflow/notification/v1" + resourceusagev1 "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1" + "google.golang.org/grpc" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/credentials" + "google.golang.org/grpc/status" +) + +const ( + maxRetries = 3 + resourceUsageQueueName = "resourceusage/events" +) + +const helpMessage = `usage: resourceusage -service=example.cluster.engflow.com:443 -tls_client_auth_cert=file.crt -tls_client_auth_key=file.key + +resourceusage streams Resource Usage API events from an EngFlow server and +prints them to stdout as JSON. + +This program is meant to serve as an example only. You'll likely want to +implement your own client to store events somewhere safe for processing. + +Be careful: the server does not store events after they have been received +and acknowledged by a client. In most cases, you should store events to a file +or other persistent data store for later processing. + +To use this API: + +1. Check with your Customer Success contact if the Resource Usage API is + enabled. This is a preview API, not available on most clusters. It is + likely to change in the future. +2. Log into your EngFlow cluster. You must have the admin or global-admin + role or the notification:Pull permission. +3. Generate, download, and extract an mTLS certificate from the + 'Getting Started' page. +4. Run this tool with a command like the one below, replacing the cluster name + and the paths to your mTLS certificate files. + + bazel run //go/resourceusage -- \ + -service=example.cluster.engflow.com:443 \ + -tls_client_auth_cert=path/to/engflow.crt \ + -tls_client_auth_key=path/to/engflow.key | \ + tee -a events.json +` + +func main() { + // Stop when the user presses ^C + ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt) + defer cancel() + + // Change to the user's current directory if run by 'bazel run', so that + // relative paths make sense. + if wd := os.Getenv("BUILD_WORKING_DIRECTORY"); wd != "" { + if err := os.Chdir(wd); err != nil { + fmt.Fprintf(os.Stderr, "error: %v\n", err) + os.Exit(1) + } + } + + if err := run(ctx, os.Args[1:]); err != nil { + fmt.Fprintf(os.Stderr, "error: %v\n", err) + os.Exit(1) + } +} + +func run(ctx context.Context, args []string) error { + flags := flag.NewFlagSet("notificationqueue", flag.ContinueOnError) + var service, tlsClientAuthCert, tlsClientAuthKey string + flags.StringVar(&service, "service", "", "The remote service to connect to via gRPC. Should include hostname and port, like example.com:443.") + flags.StringVar(&tlsClientAuthCert, "tls_client_auth_cert", "", "mTLS client certificate file to use when connecting to the gRPC service.") + flags.StringVar(&tlsClientAuthKey, "tls_client_auth_key", "", "mTLS client key file to use when connecting to the gRPC service.") + if err := flags.Parse(args); errors.Is(err, flag.ErrHelp) { + fmt.Println(helpMessage) + return nil + } else if err != nil { + return err + } + if flags.NArg() > 0 { + return fmt.Errorf("expected no arguments") + } + if service == "" { + return fmt.Errorf("-service not set; expected a hostname and port like 'example.cluster.engflow.com:443'") + } + if tlsClientAuthCert == "" { + return fmt.Errorf("-tls_client_auth_cert not set") + } + if tlsClientAuthKey == "" { + return fmt.Errorf("-tls_client_auth_key not set") + } + + cert, err := tls.LoadX509KeyPair(tlsClientAuthCert, tlsClientAuthKey) + if err != nil { + return err + } + creds := credentials.NewTLS(&tls.Config{Certificates: []tls.Certificate{cert}}) + conn, err := grpc.NewClient(service, grpc.WithTransportCredentials(creds)) + if err != nil { + return err + } + defer conn.Close() + + client := notificationv1.NewNotificationQueueClient(conn) + return streamNotifications(ctx, client, resourceUsageQueueName, printNotification) +} + +// streamNotifications calls the NotificationQueue/Pull RPC and handles +// notification acknowledgement. It calls f with each acknowledged notification. +func streamNotifications( + ctx context.Context, + client notificationv1.NotificationQueueClient, + queueName string, + f func(*notificationv1.Notification) error, +) (err error) { + defer func() { + if err != nil { + err = fmt.Errorf("streaming resource usage events: %w", err) + } + }() + if ctx.Err() != nil { + return ctx.Err() + } + + // Create a separate context for the stream to attempt graceful termination. + // We want to avoid a race where the user cancels the parent context + // (by pressing ^C), and we've received and printed but not acknowledged + // an event. + streamCtx, cancel := context.WithCancel(ctx) + defer cancel() + go func() { + select { + case <-streamCtx.Done(): + // Stream finished first. + case <-ctx.Done(): + // Caller canceled. Wait a few seconds, then cancel the stream context. + t := time.NewTimer(5 * time.Second) + defer t.Stop() + select { + case <-streamCtx.Done(): + case <-t.C: + cancel() + } + } + }() + + // Open the stream and send the first request. We only need to say which + // queue we're interested in. + stream, err := client.Pull(streamCtx) + if err != nil { + return fmt.Errorf("opening stream: %w", err) + } + firstReq := ¬ificationv1.PullNotificationRequest{ + Queue: ¬ificationv1.QueueId{ + Name: queueName, + }, + } + if err := stream.Send(firstReq); err != nil { + return fmt.Errorf("sending first request: %w", err) + } + + // Receive and acknowledge events. The server keeps streaming until + // this client closes this stream when the parent context is canceled. + ackRetries := make(map[string]int) + for { + // Receive the next response. If streamCtx is canceled, this returns + // an error immediately. + resp, err := stream.Recv() + if errors.Is(err, io.EOF) { + return nil + } else if err != nil { + return err + } + + // Process the new notification if there is one. We process it immediately + // THEN acknowledge it. This could result in processing the same event + // twice if the acknowledgement fails, but that's better than losing + // the event entirely if we did it in the opposite order. Events have + // unique IDs and can be deduplicated by the processor. We do not process + // or acknowledge events after the parent context is canceled. + if unacknowledgedNotification := resp.GetNotification(); ctx.Err() == nil && unacknowledgedNotification != nil { + token := unacknowledgedNotification.GetToken() + notification := unacknowledgedNotification.GetNotification() + ackRetries[token] = 0 + ackReq := ¬ificationv1.PullNotificationRequest{AcknowledgementTokens: []string{token}} + if err := stream.Send(ackReq); err != nil { + return fmt.Errorf("failed to send notification acknowledgement: %w", err) + } + if err := f(notification); err != nil { + return err + } + } + + // Process acknowledgement receipts, even after streamCtx is canceled. + // If a notification is successfully acknowledged, send to the caller. + // If a notification failed to be acknowledged, retry or fail. + for _, receipt := range resp.GetAcknowledgementReceipt() { + token := receipt.GetToken() + if _, ok := ackRetries[token]; !ok { + return fmt.Errorf("server acknowledged unknown notification with token %q", token) + } + + switch codes.Code(receipt.GetStatus().GetCode()) { + case codes.OK: + delete(ackRetries, token) + + case codes.DeadlineExceeded, codes.ResourceExhausted, codes.Internal, codes.Unavailable: + ackRetries[token]++ + if ackRetries[token] >= maxRetries { + return fmt.Errorf("server failed to acknowledge notification: %w", status.ErrorProto(receipt.GetStatus())) + } + ackReq := ¬ificationv1.PullNotificationRequest{AcknowledgementTokens: []string{token}} + if err := stream.Send(ackReq); err != nil { + return fmt.Errorf("failed to retry notification acknowledgement: %w", err) + } + + default: + return fmt.Errorf("server failed to acknowledge notification: %w", status.ErrorProto(receipt.GetStatus())) + } + } + + if ctx.Err() != nil && len(ackRetries) == 0 { + // Parent context canceled, and we've successfully acknowledged all + // processed events. Close this end of the stream to tell the server + // we won't acknowledge any more. The server should close its end, too. + if err := stream.CloseSend(); err != nil { + return fmt.Errorf("closing stream: %w", err) + } + } + } +} + +// printNotification unmarshals a notification as a Resource Usage event +// and prints it to stdout as JSON. +func printNotification(notification *notificationv1.Notification) (err error) { + defer func() { + if err != nil { + err = fmt.Errorf("processing event id=%s: %w", notification.GetId(), err) + } + }() + timestamp := notification.GetTimestamp().AsTime() + usageEvent := new(resourceusagev1.ResourceUsageEvent) + if err := notification.GetPayload().UnmarshalTo(usageEvent); err != nil { + return fmt.Errorf("unmarshaling notification payload: %w", err) + } + + out := resourceUsageJSON{ + ID: notification.GetId(), + Timestamp: timestamp, + Dimension: make(map[string]string), + Tag: make(map[string]string), + } + for _, dimension := range usageEvent.GetDimension() { + out.Dimension[dimension.GetKey()] = dimension.GetValue() + } + for _, tag := range usageEvent.GetTag() { + out.Tag[tag.GetKey()] = tag.GetValue() + } + + for _, payload := range usageEvent.GetPayload() { + switch { + case payload.MessageIs((*resourceusagev1.Compute)(nil)): + compute := new(resourceusagev1.Compute) + if err := payload.UnmarshalTo(compute); err != nil { + return fmt.Errorf("unmarshaling compute payload: %w", err) + } + out.Compute = &computeJSON{Duration: compute.GetDuration().AsDuration()} + + case payload.MessageIs((*resourceusagev1.Network)(nil)): + network := new(resourceusagev1.Network) + if err := payload.UnmarshalTo(network); err != nil { + return fmt.Errorf("unmarshaling network payload: %w", err) + } + out.Network = &networkJSON{ + UploadedBytes: network.GetUploadedBytes(), + DownloadedBytes: network.GetDownloadedBytes(), + } + + case payload.MessageIs((*resourceusagev1.Storage)(nil)): + storage := new(resourceusagev1.Storage) + if err := payload.UnmarshalTo(storage); err != nil { + return fmt.Errorf("unmarshaling storage payload: %w", err) + } + out.Storage = &storageJSON{ + StoredBytes: storage.GetStoredBytes(), + Duration: storage.GetDuration().AsDuration(), + } + + default: + return fmt.Errorf("unknown payload type") + } + } + + bs, err := json.MarshalIndent(out, "", " ") + if err != nil { + return err + } + fmt.Printf("%s\n", bs) + return nil +} + +type resourceUsageJSON struct { + ID string + Timestamp time.Time + Dimension map[string]string + Tag map[string]string + Compute *computeJSON `json:",omitempty"` + Network *networkJSON `json:",omitempty"` + Storage *storageJSON `json:",omitempty"` +} + +type computeJSON struct { + Duration time.Duration +} + +type networkJSON struct { + UploadedBytes, DownloadedBytes uint64 +} + +type storageJSON struct { + StoredBytes uint64 + Duration time.Duration +} diff --git a/infra/gopackagesdriver.sh b/infra/gopackagesdriver.sh index ba7d79cf..7cc24abe 100755 --- a/infra/gopackagesdriver.sh +++ b/infra/gopackagesdriver.sh @@ -1,2 +1,2 @@ #!/usr/bin/env bash -exec bazel run -- @io_bazel_rules_go//go/tools/gopackagesdriver "${@}" +exec bazel run -- @rules_go//go/tools/gopackagesdriver "${@}" From 4a1ffb04a4c2dff071ec33ecd4c233bd890b081e Mon Sep 17 00:00:00 2001 From: Jay Conrod Date: Fri, 17 Jan 2025 15:33:02 -0800 Subject: [PATCH 2/5] roll back to bazel 7.4.1 --- .bazelversion | 3 +- MODULE.bazel.lock | 5543 +++++++++++++++++++++++++++++++++++++-------- 2 files changed, 4620 insertions(+), 926 deletions(-) diff --git a/.bazelversion b/.bazelversion index ae9a76b9..7e50b18f 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1,2 @@ -8.0.0 +7.4.1 + diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 71c2646f..96c206bb 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,5 +1,5 @@ { - "lockFileVersion": 16, + "lockFileVersion": 11, "registryFileHashes": { "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2", @@ -15,6 +15,7 @@ "https://bcr.bazel.build/modules/apple_support/1.13.0/MODULE.bazel": "7c8cdea7e031b7f9f67f0b497adf6d2c6a2675e9304ca93a9af6ed84eef5a524", "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85", "https://bcr.bazel.build/modules/apple_support/1.15.1/source.json": "517f2b77430084c541bc9be2db63fdcbb7102938c5f64c17ee60ffda2e5cf07b", + "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "7bee702b4862612f29333590f4b658a5832d433d6f8e4395f090e8f4e85d442f", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "6307fec451ba9962c1c969eb516ebfe1e46528f7fa92e1c9ac8646bef4cdaa3f", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.1/MODULE.bazel": "17ae5bb970187e51c39a5ac21190279a58d7eeba83bc43e4165547cc0cf8de4a", @@ -131,8 +132,7 @@ "https://bcr.bazel.build/modules/protobuf/28.2/MODULE.bazel": "c0c8e51757df486d0314fa290e174d707bad4a6c2aa5ccb08a4b4abd76a23e90", "https://bcr.bazel.build/modules/protobuf/29.0-rc2/MODULE.bazel": "6241d35983510143049943fc0d57937937122baf1b287862f9dc8590fc4c37df", "https://bcr.bazel.build/modules/protobuf/29.0-rc3/MODULE.bazel": "33c2dfa286578573afc55a7acaea3cada4122b9631007c594bf0729f41c8de92", - "https://bcr.bazel.build/modules/protobuf/29.0/MODULE.bazel": "319dc8bf4c679ff87e71b1ccfb5a6e90a6dbc4693501d471f48662ac46d04e4e", - "https://bcr.bazel.build/modules/protobuf/29.0/source.json": "b857f93c796750eef95f0d61ee378f3420d00ee1dd38627b27193aa482f4f981", + "https://bcr.bazel.build/modules/protobuf/29.0-rc3/source.json": "c16a6488fb279ef578da7098e605082d72ed85fc8d843eaae81e7d27d0f4625d", "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0", "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573", "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858", @@ -150,7 +150,6 @@ "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", "https://bcr.bazel.build/modules/rules_cc/0.0.10/MODULE.bazel": "ec1705118f7eaedd6e118508d3d26deba2a4e76476ada7e0e3965211be012002", "https://bcr.bazel.build/modules/rules_cc/0.0.13/MODULE.bazel": "0e8529ed7b323dad0775ff924d2ae5af7640b23553dfcd4d34344c7e7a867191", - "https://bcr.bazel.build/modules/rules_cc/0.0.14/MODULE.bazel": "5e343a3aac88b8d7af3b1b6d2093b55c347b8eefc2e7d1442f7a02dc8fea48ac", "https://bcr.bazel.build/modules/rules_cc/0.0.15/MODULE.bazel": "6704c35f7b4a72502ee81f61bf88706b54f06b3cbe5558ac17e2e14666cd5dcc", "https://bcr.bazel.build/modules/rules_cc/0.0.16/MODULE.bazel": "7661303b8fc1b4d7f532e54e9d6565771fea666fbdf839e0a86affcd02defe87", "https://bcr.bazel.build/modules/rules_cc/0.0.16/source.json": "227e83737046aa4f50015da48e98e0d8ab42fd0ec74d8d653b6cc9f9a357f200", @@ -189,10 +188,10 @@ "https://bcr.bazel.build/modules/rules_java/7.3.2/MODULE.bazel": "50dece891cfdf1741ea230d001aa9c14398062f2b7c066470accace78e412bc2", "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel": "a592852f8a3dd539e82ee6542013bf2cadfc4c6946be8941e189d224500a8934", "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe", + "https://bcr.bazel.build/modules/rules_java/7.6.5/MODULE.bazel": "481164be5e02e4cab6e77a36927683263be56b7e36fef918b458d7a8a1ebadb1", "https://bcr.bazel.build/modules/rules_java/7.9.1/MODULE.bazel": "1cc411a23b701d89a87c15219a62fa27cef122509577054f11b1d3b502fbe537", "https://bcr.bazel.build/modules/rules_java/8.3.2/MODULE.bazel": "7336d5511ad5af0b8615fdc7477535a2e4e723a357b6713af439fe8cf0195017", "https://bcr.bazel.build/modules/rules_java/8.5.1/MODULE.bazel": "d8a9e38cc5228881f7055a6079f6f7821a073df3744d441978e7a43e20226939", - "https://bcr.bazel.build/modules/rules_java/8.6.1/MODULE.bazel": "f4808e2ab5b0197f094cabce9f4b006a27766beb6a9975931da07099560ca9c2", "https://bcr.bazel.build/modules/rules_java/8.7.0/MODULE.bazel": "7670fc42983b91b30a7142bbd3595ff6593d2bff908bc100b2e838f223c0653a", "https://bcr.bazel.build/modules/rules_java/8.7.0/source.json": "14dc75cebf61cea04a57bb1f66aec8331598c99717fcc21bdb1ad0d16ffcbae5", "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", @@ -200,7 +199,6 @@ "https://bcr.bazel.build/modules/rules_jvm_external/5.2/MODULE.bazel": "d9351ba35217ad0de03816ef3ed63f89d411349353077348a45348b096615036", "https://bcr.bazel.build/modules/rules_jvm_external/5.3/MODULE.bazel": "bf93870767689637164657731849fb887ad086739bd5d360d90007a581d5527d", "https://bcr.bazel.build/modules/rules_jvm_external/6.0/MODULE.bazel": "37c93a5a78d32e895d52f86a8d0416176e915daabd029ccb5594db422e87c495", - "https://bcr.bazel.build/modules/rules_jvm_external/6.1/MODULE.bazel": "75b5fec090dbd46cf9b7d8ea08cf84a0472d92ba3585b476f44c326eda8059c4", "https://bcr.bazel.build/modules/rules_jvm_external/6.2/MODULE.bazel": "36a6e52487a855f33cb960724eb56547fa87e2c98a0474c3acad94339d7f8e99", "https://bcr.bazel.build/modules/rules_jvm_external/6.3/MODULE.bazel": "c998e060b85f71e00de5ec552019347c8bca255062c990ac02d051bb80a38df0", "https://bcr.bazel.build/modules/rules_jvm_external/6.3/source.json": "6f5f5a5a4419ae4e37c35a5bb0a6ae657ed40b7abc5a5189111b47fcebe43197", @@ -237,7 +235,6 @@ "https://bcr.bazel.build/modules/rules_python/0.29.0/MODULE.bazel": "2ac8cd70524b4b9ec49a0b8284c79e4cd86199296f82f6e0d5da3f783d660c82", "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58", "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", - "https://bcr.bazel.build/modules/rules_python/0.40.0/MODULE.bazel": "9d1a3cd88ed7d8e39583d9ffe56ae8a244f67783ae89b60caafc9f5cf318ada7", "https://bcr.bazel.build/modules/rules_python/1.0.0/MODULE.bazel": "898a3d999c22caa585eb062b600f88654bf92efb204fa346fb55f6f8edffca43", "https://bcr.bazel.build/modules/rules_python/1.0.0/source.json": "b0162a65c6312e45e7912e39abd1a7f8856c2c7e41ecc9b6dc688a6f6400a917", "https://bcr.bazel.build/modules/rules_rust/0.45.1/MODULE.bazel": "a69d0db3a958fab2c6520961e1b2287afcc8b36690fd31bbc4f6f7391397150d", @@ -252,7 +249,6 @@ "https://bcr.bazel.build/modules/stardoc/0.5.4/MODULE.bazel": "6569966df04610b8520957cb8e97cf2e9faac2c0309657c537ab51c16c18a2a4", "https://bcr.bazel.build/modules/stardoc/0.5.6/MODULE.bazel": "c43dabc564990eeab55e25ed61c07a1aadafe9ece96a4efabb3f8bf9063b71ef", "https://bcr.bazel.build/modules/stardoc/0.7.0/MODULE.bazel": "05e3d6d30c099b6770e97da986c53bd31844d7f13d41412480ea265ac9e8079c", - "https://bcr.bazel.build/modules/stardoc/0.7.1/MODULE.bazel": "3548faea4ee5dda5580f9af150e79d0f6aea934fc60c1cc50f4efdd9420759e7", "https://bcr.bazel.build/modules/stardoc/0.7.2/MODULE.bazel": "fc152419aa2ea0f51c29583fab1e8c99ddefd5b3778421845606ee628629e0e5", "https://bcr.bazel.build/modules/stardoc/0.7.2/source.json": "58b029e5e901d6802967754adf0a9056747e8176f017cfe3607c0851f4d42216", "https://bcr.bazel.build/modules/upb/0.0.0-20211020-160625a/MODULE.bazel": "6cced416be2dc5b9c05efd5b997049ba795e5e4e6fafbe1624f4587767638928", @@ -274,13 +270,14 @@ "//scala/extensions:config.bzl%scala_config": { "general": { "bzlTransitiveDigest": "4eKgKFzcNgWncPUTQAEx30GHX1OXaonHvRH6AInB7uA=", - "usagesDigest": "UlR8luTF8Kcr49xMrJuZymTxf8HusrBQKt4E8hLv03A=", + "usagesDigest": "MWECBek7abBnY/Ad9tVRTGcKK21h9Uv6esEeHXt2ABs=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "io_bazel_rules_scala_config": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//:scala_config.bzl%_config_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//:scala_config.bzl", + "ruleClassName": "_config_repository", "attributes": { "scala_version": "2.13.12", "scala_versions": [ @@ -298,21 +295,22 @@ [ "", "io_bazel_rules_scala", - "+_repo_rules2+io_bazel_rules_scala" + "_main~_repo_rules~io_bazel_rules_scala" ] ] } }, "//scala/extensions:deps.bzl%scala_deps": { "general": { - "bzlTransitiveDigest": "mYj5D5R3hMlRTHjNvsLKuCNL/9IELcT5rJTYqw4S0IM=", - "usagesDigest": "sE/PK40vHwwH2pfFo82m2MizQL6cBXb0RTH223dtYNI=", + "bzlTransitiveDigest": "a3La5PdGTBmg6kjYoJRa/tawbrR+tnPrldbXupT6neo=", + "usagesDigest": "dRKKtLHIziKkjKPOAyNnlOlVcVlkGGqcybizLRcELLQ=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "io_bazel_rules_scala_scala_library_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.13.12/scala-library-2.13.12.jar", @@ -335,13 +333,15 @@ } }, "io_bazel_rules_scala_scala_library": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scala_library_2_13_12" } }, "io_bazel_rules_scala_scala_compiler_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.13.12/scala-compiler-2.13.12.jar", @@ -364,13 +364,15 @@ } }, "io_bazel_rules_scala_scala_compiler": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scala_compiler_2_13_12" } }, "io_bazel_rules_scala_scala_reflect_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.13.12/scala-reflect-2.13.12.jar", @@ -393,13 +395,15 @@ } }, "io_bazel_rules_scala_scala_reflect": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scala_reflect_2_13_12" } }, "io_bazel_rules_scala_scala_xml_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.3.0/scala-xml_2.13-1.3.0.jar", @@ -422,13 +426,15 @@ } }, "io_bazel_rules_scala_scala_xml": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scala_xml_2_13_12" } }, "io_bazel_rules_scala_scala_parser_combinators_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", @@ -451,13 +457,15 @@ } }, "io_bazel_rules_scala_scala_parser_combinators": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scala_parser_combinators_2_13_12" } }, "org_scalameta_semanticdb_scalac_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalameta/semanticdb-scalac_2.13.12/4.8.4/semanticdb-scalac_2.13.12-4.8.4.jar", @@ -482,13 +490,15 @@ } }, "org_scalameta_semanticdb_scalac": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "org_scalameta_semanticdb_scalac_2_13_12" } }, "io_bazel_rules_scala_scalatest_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.13/3.2.9/scalatest_2.13-3.2.9.jar", @@ -516,13 +526,15 @@ } }, "io_bazel_rules_scala_scalatest": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_2_13_12" } }, "io_bazel_rules_scala_scalatest_compatible_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.9/scalatest-compatible-3.2.9.jar", @@ -550,13 +562,15 @@ } }, "io_bazel_rules_scala_scalatest_compatible": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_compatible_2_13_12" } }, "io_bazel_rules_scala_scalatest_core_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.13/3.2.9/scalatest-core_2.13-3.2.9.jar", @@ -584,13 +598,15 @@ } }, "io_bazel_rules_scala_scalatest_core": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_core_2_13_12" } }, "io_bazel_rules_scala_scalatest_featurespec_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.13/3.2.9/scalatest-featurespec_2.13-3.2.9.jar", @@ -618,13 +634,15 @@ } }, "io_bazel_rules_scala_scalatest_featurespec": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_featurespec_2_13_12" } }, "io_bazel_rules_scala_scalatest_flatspec_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.13/3.2.9/scalatest-flatspec_2.13-3.2.9.jar", @@ -652,13 +670,15 @@ } }, "io_bazel_rules_scala_scalatest_flatspec": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_flatspec_2_13_12" } }, "io_bazel_rules_scala_scalatest_freespec_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.13/3.2.9/scalatest-freespec_2.13-3.2.9.jar", @@ -686,13 +706,15 @@ } }, "io_bazel_rules_scala_scalatest_freespec": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_freespec_2_13_12" } }, "io_bazel_rules_scala_scalatest_funsuite_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.13/3.2.9/scalatest-funsuite_2.13-3.2.9.jar", @@ -720,13 +742,15 @@ } }, "io_bazel_rules_scala_scalatest_funsuite": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_funsuite_2_13_12" } }, "io_bazel_rules_scala_scalatest_funspec_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.13/3.2.9/scalatest-funspec_2.13-3.2.9.jar", @@ -754,13 +778,15 @@ } }, "io_bazel_rules_scala_scalatest_funspec": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_funspec_2_13_12" } }, "io_bazel_rules_scala_scalatest_matchers_core_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.13/3.2.9/scalatest-matchers-core_2.13-3.2.9.jar", @@ -788,13 +814,15 @@ } }, "io_bazel_rules_scala_scalatest_matchers_core": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_matchers_core_2_13_12" } }, "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.13/3.2.9/scalatest-shouldmatchers_2.13-3.2.9.jar", @@ -822,13 +850,15 @@ } }, "io_bazel_rules_scala_scalatest_shouldmatchers": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_shouldmatchers_2_13_12" } }, "io_bazel_rules_scala_scalatest_mustmatchers_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.13/3.2.9/scalatest-mustmatchers_2.13-3.2.9.jar", @@ -856,13 +886,15 @@ } }, "io_bazel_rules_scala_scalatest_mustmatchers": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalatest_mustmatchers_2_13_12" } }, "io_bazel_rules_scala_scalactic_2_13_12": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//scala:scala_maven_import_external.bzl%jvm_import_external", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//scala:scala_maven_import_external.bzl", + "ruleClassName": "jvm_import_external", "attributes": { "jar_urls": [ "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.13/3.2.9/scalactic_2.13-3.2.9.jar", @@ -890,7 +922,8 @@ } }, "io_bazel_rules_scala_scalactic": { - "repoRuleId": "@@+_repo_rules2+io_bazel_rules_scala//third_party/repositories:repositories.bzl%_alias_repository", + "bzlFile": "@@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl", + "ruleClassName": "_alias_repository", "attributes": { "target": "io_bazel_rules_scala_scalactic_2_13_12" } @@ -900,385 +933,389 @@ [ "", "io_bazel_rules_scala", - "+_repo_rules2+io_bazel_rules_scala" + "_main~_repo_rules~io_bazel_rules_scala" ], [ - "+_repo_rules2+io_bazel_rules_scala", + "_main~_repo_rules~io_bazel_rules_scala", "bazel_skylib", - "bazel_skylib+" + "bazel_skylib~" ], [ - "+_repo_rules2+io_bazel_rules_scala", + "_main~_repo_rules~io_bazel_rules_scala", "bazel_tools", "bazel_tools" ], [ - "+_repo_rules2+io_bazel_rules_scala", + "_main~_repo_rules~io_bazel_rules_scala", "io_bazel_rules_scala", - "+_repo_rules2+io_bazel_rules_scala" + "_main~_repo_rules~io_bazel_rules_scala" ], [ - "+_repo_rules2+io_bazel_rules_scala", + "_main~_repo_rules~io_bazel_rules_scala", "io_bazel_rules_scala_config", - "+scala_config+io_bazel_rules_scala_config" - ], - [ - "bazel_features+", - "bazel_features_globals", - "bazel_features++version_extension+bazel_features_globals" - ], - [ - "bazel_features+", - "bazel_features_version", - "bazel_features++version_extension+bazel_features_version" + "_main~scala_config~io_bazel_rules_scala_config" ], [ "bazel_tools", "rules_java", - "rules_java+" - ], - [ - "protobuf+", - "proto_bazel_features", - "bazel_features+" + "rules_java~" ], [ - "rules_cc+", - "bazel_tools", - "bazel_tools" - ], - [ - "rules_java+", - "bazel_skylib", - "bazel_skylib+" + "rules_java~", + "compatibility_proxy", + "rules_java~~compatibility_proxy~compatibility_proxy" ], [ - "rules_java+", + "rules_java~~compatibility_proxy~compatibility_proxy", "bazel_tools", "bazel_tools" ], [ - "rules_java+", - "com_google_protobuf", - "protobuf+" - ], - [ - "rules_java+", - "compatibility_proxy", - "rules_java++compatibility_proxy+compatibility_proxy" - ], - [ - "rules_java+", - "rules_cc", - "rules_cc+" - ], - [ - "rules_java++compatibility_proxy+compatibility_proxy", + "rules_java~~compatibility_proxy~compatibility_proxy", "rules_java", - "rules_java+" + "rules_java~" ] ] } }, - "@@apple_support+//crosstool:setup.bzl%apple_cc_configure_extension": { + "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { "general": { - "bzlTransitiveDigest": "pd/h9zu+PbVBnRwZ3tnvvnAydlf0zxd9Ov95CD7vJIM=", - "usagesDigest": "4pq0kW0KxGuBT70a6oHQKwZTRnKzsMjwioRC4NdtYng=", + "bzlTransitiveDigest": "ltCGFbl/LQQZXn/LEMXfKX7pGwyqNiOCHcmiQW0tmjM=", + "usagesDigest": "AdcfeoQL3+teeMJt17kg4rBZzPPjZtuypdD9FgSOVEg=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "local_config_apple_cc_toolchains": { - "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf_toolchains", + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", "attributes": {} }, "local_config_apple_cc": { - "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf", + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", "attributes": {} } }, "recordedRepoMappingEntries": [ [ - "apple_support+", + "apple_support~", "bazel_tools", "bazel_tools" - ], - [ - "bazel_tools", - "rules_cc", - "rules_cc+" ] ] } }, - "@@aspect_bazel_lib+//lib:extensions.bzl%toolchains": { + "@@aspect_bazel_lib~//lib:extensions.bzl%toolchains": { "general": { - "bzlTransitiveDigest": "TGnRoh+5JjQRL6rkWCQneJpM89XjhPyydRXWIn0HmDw=", - "usagesDigest": "YkXmRQgtO1cA1ngaylV13VwFl6DjNVcWUO9XUnpxOAY=", + "bzlTransitiveDigest": "wbW/fEUW6Ya4TMFK5PPIgAwWuJm4AQFeqnOO5DbiZjw=", + "usagesDigest": "lGjfF/PYotxwxMgp2dKTiERimy1qreT6xheEBNOA7Yg=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "copy_directory_darwin_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", "attributes": { "platform": "darwin_amd64" } }, "copy_directory_darwin_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", "attributes": { "platform": "darwin_arm64" } }, "copy_directory_freebsd_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", "attributes": { "platform": "freebsd_amd64" } }, "copy_directory_linux_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", "attributes": { "platform": "linux_amd64" } }, "copy_directory_linux_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", "attributes": { "platform": "linux_arm64" } }, "copy_directory_windows_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", "attributes": { "platform": "windows_amd64" } }, "copy_directory_toolchains": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_toolchains_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_toolchains_repo", "attributes": { "user_repository_name": "copy_directory" } }, "copy_to_directory_darwin_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", "attributes": { "platform": "darwin_amd64" } }, "copy_to_directory_darwin_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", "attributes": { "platform": "darwin_arm64" } }, "copy_to_directory_freebsd_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", "attributes": { "platform": "freebsd_amd64" } }, "copy_to_directory_linux_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", "attributes": { "platform": "linux_amd64" } }, "copy_to_directory_linux_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", "attributes": { "platform": "linux_arm64" } }, "copy_to_directory_windows_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", "attributes": { "platform": "windows_amd64" } }, "copy_to_directory_toolchains": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_toolchains_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_toolchains_repo", "attributes": { "user_repository_name": "copy_to_directory" } }, "jq_darwin_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", "attributes": { "platform": "darwin_amd64", "version": "1.6" } }, "jq_darwin_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", "attributes": { "platform": "darwin_arm64", "version": "1.6" } }, "jq_linux_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", "attributes": { "platform": "linux_amd64", "version": "1.6" } }, "jq_windows_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", "attributes": { "platform": "windows_amd64", "version": "1.6" } }, "jq": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_host_alias_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_host_alias_repo", "attributes": {} }, "jq_toolchains": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_toolchains_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_toolchains_repo", "attributes": { "user_repository_name": "jq" } }, "yq_darwin_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "darwin_amd64", "version": "4.25.2" } }, "yq_darwin_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "darwin_arm64", "version": "4.25.2" } }, "yq_linux_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "linux_amd64", "version": "4.25.2" } }, "yq_linux_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "linux_arm64", "version": "4.25.2" } }, "yq_linux_s390x": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "linux_s390x", "version": "4.25.2" } }, "yq_linux_ppc64le": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "linux_ppc64le", "version": "4.25.2" } }, "yq_windows_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", "attributes": { "platform": "windows_amd64", "version": "4.25.2" } }, "yq": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_host_alias_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_host_alias_repo", "attributes": {} }, "yq_toolchains": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_toolchains_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_toolchains_repo", "attributes": { "user_repository_name": "yq" } }, "coreutils_darwin_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", "attributes": { "platform": "darwin_amd64", "version": "0.0.16" } }, "coreutils_darwin_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", "attributes": { "platform": "darwin_arm64", "version": "0.0.16" } }, "coreutils_linux_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", "attributes": { "platform": "linux_amd64", "version": "0.0.16" } }, "coreutils_linux_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", "attributes": { "platform": "linux_arm64", "version": "0.0.16" } }, "coreutils_windows_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", "attributes": { "platform": "windows_amd64", "version": "0.0.16" } }, "coreutils_toolchains": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_toolchains_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_toolchains_repo", "attributes": { "user_repository_name": "coreutils" } }, "expand_template_darwin_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", "attributes": { "platform": "darwin_amd64" } }, "expand_template_darwin_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", "attributes": { "platform": "darwin_arm64" } }, "expand_template_freebsd_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", "attributes": { "platform": "freebsd_amd64" } }, "expand_template_linux_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", "attributes": { "platform": "linux_amd64" } }, "expand_template_linux_arm64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", "attributes": { "platform": "linux_arm64" } }, "expand_template_windows_amd64": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", "attributes": { "platform": "windows_amd64" } }, "expand_template_toolchains": { - "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_toolchains_repo", + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_toolchains_repo", "attributes": { "user_repository_name": "expand_template" } @@ -1286,38 +1323,39 @@ }, "recordedRepoMappingEntries": [ [ - "aspect_bazel_lib+", + "aspect_bazel_lib~", "aspect_bazel_lib", - "aspect_bazel_lib+" + "aspect_bazel_lib~" ], [ - "aspect_bazel_lib+", + "aspect_bazel_lib~", "bazel_skylib", - "bazel_skylib+" + "bazel_skylib~" ], [ - "aspect_bazel_lib+", + "aspect_bazel_lib~", "bazel_tools", "bazel_tools" ] ] } }, - "@@aspect_rules_ts+//ts:extensions.bzl%ext": { + "@@aspect_rules_ts~//ts:extensions.bzl%ext": { "general": { - "bzlTransitiveDigest": "DkprsmJnGdSGetMfiEXwp+nh9ZAbKZLQ9Uoi0/2Phrs=", - "usagesDigest": "YFCF4Pe3ZMqh53Xb1GbuZYKE5Q121NDwst+POer5vxE=", + "bzlTransitiveDigest": "edzkhCMv6VxG72PpQsU7hF5HhKoLkSqY5sQ6+2lMtIg=", + "usagesDigest": "9O4EPr/qVpeI6F2lAJN4CVqehn3XWCSwGh9DJOsio+M=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "npm_typescript": { - "repoRuleId": "@@aspect_rules_ts+//ts/private:npm_repositories.bzl%http_archive_version", + "bzlFile": "@@aspect_rules_ts~//ts/private:npm_repositories.bzl", + "ruleClassName": "http_archive_version", "attributes": { "bzlmod": true, "version": "5.4.5", "integrity": "", - "build_file": "@@aspect_rules_ts+//ts:BUILD.typescript", + "build_file": "@@aspect_rules_ts~//ts:BUILD.typescript", "build_file_substitutions": { "bazel_worker_version": "5.4.2", "google_protobuf_version": "3.20.1" @@ -1330,23 +1368,24 @@ }, "recordedRepoMappingEntries": [ [ - "aspect_rules_ts+", + "aspect_rules_ts~", "bazel_tools", "bazel_tools" ] ] } }, - "@@googleapis+//:extensions.bzl%switched_rules": { + "@@googleapis~//:extensions.bzl%switched_rules": { "general": { "bzlTransitiveDigest": "vG6fuTzXD8MMvHWZEQud0MMH7eoC4GXY0va7VrFFh04=", - "usagesDigest": "V36Q86N1GYjjBF+3dZXH82M6V6/HSysCoOngw4dEtVk=", + "usagesDigest": "1T6sqB87b1P6IjIxJoREqS/Ml3hKQSO17RwGXpxvEiw=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "com_google_googleapis_imports": { - "repoRuleId": "@@googleapis+//:repository_rules.bzl%switched_rules", + "bzlFile": "@@googleapis~//:repository_rules.bzl", + "ruleClassName": "switched_rules", "attributes": { "rules": { "proto_library_with_info": [ @@ -1507,29 +1546,31 @@ "@@platforms//host:extension.bzl%host_platform": { "general": { "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=", - "usagesDigest": "SeQiIN/f8/Qt9vYQk7qcXp4I4wJeEC0RnQDiaaJ4tb8=", + "usagesDigest": "hgylFkgWSg0ulUwWZzEM1aIftlUnbmw2ynWLdEfHnZc=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "host_platform": { - "repoRuleId": "@@platforms//host:extension.bzl%host_platform_repo", + "bzlFile": "@@platforms//host:extension.bzl", + "ruleClassName": "host_platform_repo", "attributes": {} } }, "recordedRepoMappingEntries": [] } }, - "@@rules_buf+//buf:extensions.bzl%ext": { + "@@rules_buf~//buf:extensions.bzl%ext": { "general": { - "bzlTransitiveDigest": "3jGepUu1j86kWsTP3Fgogw/XfktHd4UIQt8zj494n/Y=", - "usagesDigest": "RTc2BMQ2b0wGU8CRvN3EoPz34m3LMe+K/oSkFkN83+M=", + "bzlTransitiveDigest": "gmPmM7QT5Jez2VVFcwbbMf/QWSRag+nJ1elFJFFTcn0=", + "usagesDigest": "1E3NeLCRI6VyKiersXVtONCbNopc5jIVqoHBOpcWb0A=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "rules_buf_toolchains": { - "repoRuleId": "@@rules_buf+//buf/internal:toolchain.bzl%buf_download_releases", + "bzlFile": "@@rules_buf~//buf/internal:toolchain.bzl", + "ruleClassName": "buf_download_releases", "attributes": { "version": "v1.27.0" } @@ -1537,65 +1578,72 @@ }, "recordedRepoMappingEntries": [ [ - "rules_buf+", + "rules_buf~", "bazel_tools", "bazel_tools" ] ] } }, - "@@rules_dotnet+//dotnet:extensions.bzl%dotnet": { + "@@rules_dotnet~//dotnet:extensions.bzl%dotnet": { "general": { "bzlTransitiveDigest": "fJyqX2Qhcc0iPiKt18IkAz6bcj8Myr4CT16rAV+wylM=", - "usagesDigest": "8upPljQKBd3m0+u/LGGZYQt5u3OdojXoQQ16h7eKu2Q=", + "usagesDigest": "dSS2y31OvcVL37fBkD9nAXDGmAkL0CWiNHc2+j2hhtg=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "dotnet_x86_64-apple-darwin": { - "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", + "ruleClassName": "dotnet_repositories", "attributes": { "platform": "x86_64-apple-darwin", "dotnet_version": "8.0.200" } }, "dotnet_aarch64-apple-darwin": { - "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", + "ruleClassName": "dotnet_repositories", "attributes": { "platform": "aarch64-apple-darwin", "dotnet_version": "8.0.200" } }, "dotnet_x86_64-unknown-linux-gnu": { - "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", + "ruleClassName": "dotnet_repositories", "attributes": { "platform": "x86_64-unknown-linux-gnu", "dotnet_version": "8.0.200" } }, "dotnet_arm64-unknown-linux-gnu": { - "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", + "ruleClassName": "dotnet_repositories", "attributes": { "platform": "arm64-unknown-linux-gnu", "dotnet_version": "8.0.200" } }, "dotnet_x86_64-pc-windows-msvc": { - "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", + "ruleClassName": "dotnet_repositories", "attributes": { "platform": "x86_64-pc-windows-msvc", "dotnet_version": "8.0.200" } }, "dotnet_arm64-pc-windows-msvc": { - "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "bzlFile": "@@rules_dotnet~//dotnet:repositories.bzl", + "ruleClassName": "dotnet_repositories", "attributes": { "platform": "arm64-pc-windows-msvc", "dotnet_version": "8.0.200" } }, "dotnet_toolchains": { - "repoRuleId": "@@rules_dotnet+//dotnet/private:toolchains_repo.bzl%toolchains_repo", + "bzlFile": "@@rules_dotnet~//dotnet/private:toolchains_repo.bzl", + "ruleClassName": "toolchains_repo", "attributes": { "user_repository_name": "dotnet" } @@ -1604,16 +1652,3308 @@ "recordedRepoMappingEntries": [] } }, - "@@rules_foreign_cc+//foreign_cc:extensions.bzl%tools": { + "@@rules_dotnet~//dotnet/private/sdk/apphost_packs:dotnet.apphost_packs_extension.bzl%apphost_packs_extension": { + "general": { + "bzlTransitiveDigest": "mW+wHEIGP75vak5ZacxLPHQ8CC8VNBjHmL+674TgMjo=", + "usagesDigest": "AHcWdArT/BGb/ubI/pqYnoiWFSexwKXomPJzNUKaTfY=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nuget.microsoft.netcore.app.host.linux-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "3.0.3", + "sha512": "sha512-GUhjsX3RrvzfRmGH7ol6VvVOVc8DQagZgolXuBNR0W9H/w3fGeCK32ZxZjQ1HS1qzZ1tloQPRjz1ba1MPqlkDA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "3.0.3", + "sha512": "sha512-6T+r7FjmaJOcWw8dIs0pi3KNo3sU/Ggk25rhsY5SYLS6dtap1k0fVkJHeZxXeXGckunScQ/XgKAYDPQ1iETXvg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "3.0.3", + "sha512": "sha512-Fymy5EH69k06lZLcAzuvskwmmcyeZZmQwRrh0R13kAgPy1cH9rVfy77b1IDzkXxKNO7B4ANHdC80sfAiT8Wlmg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "3.0.3", + "sha512": "sha512-rwJyEcl3wwxCI0hyIOw7tHsCfA5v2NpZVa3GZSFa7/nJmtyZlTfWyuYAXxdnFzxSwU2DNYL3kYy59/4+9EF4hA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "3.0.3", + "sha512": "sha512-eIA7DY8jtGGCw+89OfgbRy05orLvoI4YKNkX3fGioKJRnzjLvg1QcbcfqVTHeXxo1hTP8qJBrNPJi54Tl3V0kw==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "3.0.3", + "sha512": "sha512-5U3jATWwbKMwTseDUE9zqDgbTwVkARyuEd6kk9eJ2RQWCQUhc4xweDWaOQ+gjO1RfEiSFhN0ZI4LSvZJWX2cow==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "3.0.3", + "sha512": "sha512-h4tRZdiosNe48JJU91uw7WBga3AkT6dOvJSBgqnAaYIXZ1Hbc/z2NZ79D3JsKyXIdcQaqW1k0eI2ticzeqtjMA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "3.1.32", + "sha512": "sha512-4eu4PWwNn8v1ddv6+fAZZ3DVazO/uAtfRalMVQWBVzilB0LZZoJ9PLuMiSyHn0AY+ARCqHJofWSHxSiWfC1yyw==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "3.1.32", + "sha512": "sha512-kH1+TFUJTQOoUBrEFwHYNryf28OO4JF3xcOTbUN/8WGS3NW29oCqyR88RYKEOly7QThmGua/PNd8IpjC10vRaA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "3.1.32", + "sha512": "sha512-uglFvmuXerWDbNZuwx7ZJvvblKrMgMYcCr6r+un62yfkhx4OjjyuaAdFjSo40qpalR5QUMlqM+5xBERcw4+GOQ==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "3.1.32", + "sha512": "sha512-8MAEJqAVpNSU/w0qKZFHvdweNdcIht3g0Of3gTEVqyR0R2ovNHCenSSfo5kAS8hfVZ1oxiEdTNdHrKmwq3vvRA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "3.1.32", + "sha512": "sha512-vV19A5M60cxvdRM3ZabhPjI6lz2svjXtbyD3n0lRz0FzxvztP4Vvf0nH1FXzwDVm/ydNL7UN3tlj62XjdNfKjQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "3.1.32", + "sha512": "sha512-p9nogZAnicSfXmfpDCBlNJbszywmLhbV6/IbcK4qB4gb+9AF46OOnSVzMc2BVZmPsLfkQtSFVlG/chdttCqD9A==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "3.1.32", + "sha512": "sha512-DswXqix50wAEPlovKVJ1VbPx+tYwXtwdh6zkpzGkq+Qn27Axs2iNUXdKffBjZsDBjeGavb7AEWYMrBz98a/5uA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "5.0.17", + "sha512": "sha512-3x4x8sACczUaRusJAfZ8uG+lGxDSeeqb0d6PekygzgT44lQhaXKKof8yji3X4xH1JqHnprv1faChuZkD54OYNg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "5.0.17", + "sha512": "sha512-/ytwOp85R5T/NTSmBL51+GlytssrC2Ov7CgZPJIWj/9u8pPI6unO1UZ219MrDZttGUWP1pHm7kJ7XaKbifjHlg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "5.0.17", + "sha512": "sha512-LY6e3dnNfEkk7mrDOxx0JY63sioI2xskstHwC1O2StNJ6QjVWE5i3xDPJl6s1DidACTvZvm16XDPqnR/cITNLg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "5.0.17", + "sha512": "sha512-H9co6YngYniZfzz8XER87mkQ03h2R1eR8NYKNZL1jEVnFQYHvPRZqN6pEhIhGVx+RiKhKDEGdHORFVZDVhTFbw==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "5.0.17", + "sha512": "sha512-cW3IvuCZC4ULbzsA4A3FznaUTFNXOJNCUDfFn9eN/t6tjJZe70tI4WAc51GApa3wC/B7Sy/S7yRsH+m5fDnjzA==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "5.0.17", + "sha512": "sha512-GjnT+8oke0YvrrbD2VlIcBmJ8HyqB0/zOpnNJ+f0dc0RzAQ/lSxCC7avT0Ly86as+zK5vU9TatXP++5VqspCZQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "5.0.17", + "sha512": "sha512-ibTt4do4+2H3pShc5cvk/u3SG5zeiXMwi3HvTRNMKfnjd+UIjf4w364tXNoEADHrWokdUOX37k5icLvqCIqqNA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "6.0.28", + "sha512": "sha512-TbFlTZBow3//Xi/x17srAg5mGjlWw2uUPxrjSGuryPhRXgtv52soisZ8C9BZYLTb6O7UeDiQlLXPSo8M0SJ0EA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "6.0.28", + "sha512": "sha512-Y6jWqYf7+OByPyXoC1EtR47jM7BHzaWi+hXIWqYOwVKKmk7Xg76RtTUBogadB7lXTQRefIfyjrdpyb5RscXeRA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "6.0.28", + "sha512": "sha512-gbG9jNbLRQxiRJqLquC6ENWnpx9KpSjCiz4r3RDRoFwt0h1h7lmjeY86A3siA8zSZD9/ZWxnJhJ68Sr2bQhwow==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "6.0.28", + "sha512": "sha512-9HGFHhyyj5ITWumA/IQrWR6qwHWR0hYuwyZxXR4ZKBKyQxedDZsFT+D/t1AQwPyeQyx6EmaUl7cd5ySht9H7Rg==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "6.0.28", + "sha512": "sha512-MEJB5al4h6eMrjyOT0sx7AiLYFqPf2x1DFnmcLpHQCRf45ZRE/HWjMc3le681Ygvt9F5QX7oGQKRH9Z3D3ckWw==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "6.0.28", + "sha512": "sha512-7jRowpiW573pInKSbWK5jvHSMTFvmRZ7r/l0AiVOCwp2b1EOFtCLrJDcEbs4r/tx2fTBjVjTDQ5aT+niQUhk0w==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "6.0.28", + "sha512": "sha512-tA94VL7eb4h4MOHy2rthhnPYUV9Dtnw2VeP5xFRxA8Rpsi5fDhR/79Q5P+RuF2Jml9fwoNKaMQ6jxQWaIgf+wQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "6.0.28", + "sha512": "sha512-ny06bI55JoGI1SEyYXPjwgRqEPiPlvcz1nGZETwtjadwGg4XlD8nYwtqak2zLSQBKO+BMZ3CtkSEOyP65sHj0A==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "7.0.17", + "sha512": "sha512-mAoME1kKZLrqJtxdcLY7VZZlRL8CWWsNkk1q4D8zumpuTSuB3/AvEdZ7rlnVUndWIB5SVv+l9mxOu6oIFMn8vw==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "7.0.17", + "sha512": "sha512-IgVZHEcjg8TL73xcNdj1qM7vmhwNzF4EZgOsQd7ruQX7NciUF7rseBmxS9bZYlthF73KAK1VnPAK2PRgnFqalA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "7.0.17", + "sha512": "sha512-hG4CNgp5fZj9nmx2P7ZIYIjYxJFWcKQo2uQ6tkL/IazkrYwGvBjF52bU5WCZIwfk/MIwoiKVKWh4MihNOCI/yQ==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "7.0.17", + "sha512": "sha512-FRDb8epYZ6sAfMf4NUhvDO/0IJelu8IvjR1w9DTaKYanaY2HLksMiXUDhNyjkTM45wHfePWu20+N9oqb7YBSjQ==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "7.0.17", + "sha512": "sha512-ZKN9JsqzPCbF1r0F6Um2gvaBbEgaErQQ5yUYAscKadXylogCPnO3eTRb69z5bxLQdnru+NGMJ1fhd5+MDcRD1Q==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "7.0.17", + "sha512": "sha512-J3HkImlFu6U6pBNX3yj1dkx29FV9iiHKgV+ePimT/YgwQFfIcxT874EuJxOvhd2uKbsGqgmpj5nBkURnY/gAaw==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "7.0.17", + "sha512": "sha512-Ns23KKE07LfqfzghWyd+DGTY/zf5EB9qj3cluFOuNWJ8d15Uffh89uKS4K/p940Wzpql4d2Bvu7mbP5L9V9JAQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "7.0.17", + "sha512": "sha512-Wmf0oefdvcV+HESw8GlGrF2z511NER0ckIkuT4uZ861ZDefAoxmfJv2w6TVowAV1CAYOH60mt8yN/xqRUwm3pA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "8.0.3", + "sha512": "sha512-G4o9Ih9kVUJNoCGDLGGKBOMuKiRDhowuWUnzqFTcy8viZ/ZgvzFGXzEr3P8xRsa3/T0qIZ+5qQCqhe7+dgXa8A==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "8.0.3", + "sha512": "sha512-gKz5NE5xo9pruoe1K2pRmtCxTV3j1X6nhRfNmYMPk25uZJJMlXhjE4HuZez08p4T04z/XGuWQu8PSFOIVXUUgw==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "8.0.3", + "sha512": "sha512-ychlRX0pN0rrnJ2svau28Mho1fa4oVcK86M45tF432llzB0GItVdnsH12tp0iCI+y3Id2LoYroTQPuW0pdlO8A==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "8.0.3", + "sha512": "sha512-fS1jmasVgjGkUTx9z/vLdDOeRAbjWv1Zoib6E8GZZAk3ldCHm4BV9jpQCFisVD5NpCe/+iOo+/9dpojYjEUEdA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "8.0.3", + "sha512": "sha512-LrfJ8JM8zsqK1XeJ6oRzAeiek1n0y7I5J6xKdcaWTW1sMtm71ynoP5TB4uJpPl5meRhDstiSiyK2HfQJuxr2QA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "8.0.3", + "sha512": "sha512-zqw7Ggssv8tHA8tB1XR0CzpYpRqzSIEA9dRaFKHDzBFZI17T0uLdCKnLqII8AtOVVQ0HEht6ZOR5DaQUtQ+pvQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "8.0.3", + "sha512": "sha512-g2vmpZ7HTbKdtXgQch/puL9wTtiSgcbxYR09EofwkRmdVhY6KTNV6emxmUlj60YC8YsJyGhfAGxP0R+e+0oxVA==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "8.0.3", + "sha512": "sha512-rOwbb11nYQr2OtYbjFw2AwEz1ohRqXEkhVCsIQ/jg/8OL/meNjFFc5bUYe8vRk1F3DOZWCUyqd4wcWcus6hthQ==" + } + }, + "dotnet.apphost_packs": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_repo.bzl", + "ruleClassName": "_nuget_repo", + "attributes": { + "repo_name": "dotnet.apphost_packs", + "packages": [ + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v3.0.3\",\"sha512\":\"sha512-GUhjsX3RrvzfRmGH7ol6VvVOVc8DQagZgolXuBNR0W9H/w3fGeCK32ZxZjQ1HS1qzZ1tloQPRjz1ba1MPqlkDA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v3.0.3\",\"sha512\":\"sha512-6T+r7FjmaJOcWw8dIs0pi3KNo3sU/Ggk25rhsY5SYLS6dtap1k0fVkJHeZxXeXGckunScQ/XgKAYDPQ1iETXvg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-Fymy5EH69k06lZLcAzuvskwmmcyeZZmQwRrh0R13kAgPy1cH9rVfy77b1IDzkXxKNO7B4ANHdC80sfAiT8Wlmg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-rwJyEcl3wwxCI0hyIOw7tHsCfA5v2NpZVa3GZSFa7/nJmtyZlTfWyuYAXxdnFzxSwU2DNYL3kYy59/4+9EF4hA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v3.0.3\",\"sha512\":\"sha512-eIA7DY8jtGGCw+89OfgbRy05orLvoI4YKNkX3fGioKJRnzjLvg1QcbcfqVTHeXxo1hTP8qJBrNPJi54Tl3V0kw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v3.0.3\",\"sha512\":\"sha512-5U3jATWwbKMwTseDUE9zqDgbTwVkARyuEd6kk9eJ2RQWCQUhc4xweDWaOQ+gjO1RfEiSFhN0ZI4LSvZJWX2cow==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v3.0.3\",\"sha512\":\"sha512-h4tRZdiosNe48JJU91uw7WBga3AkT6dOvJSBgqnAaYIXZ1Hbc/z2NZ79D3JsKyXIdcQaqW1k0eI2ticzeqtjMA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v3.1.32\",\"sha512\":\"sha512-4eu4PWwNn8v1ddv6+fAZZ3DVazO/uAtfRalMVQWBVzilB0LZZoJ9PLuMiSyHn0AY+ARCqHJofWSHxSiWfC1yyw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v3.1.32\",\"sha512\":\"sha512-kH1+TFUJTQOoUBrEFwHYNryf28OO4JF3xcOTbUN/8WGS3NW29oCqyR88RYKEOly7QThmGua/PNd8IpjC10vRaA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-uglFvmuXerWDbNZuwx7ZJvvblKrMgMYcCr6r+un62yfkhx4OjjyuaAdFjSo40qpalR5QUMlqM+5xBERcw4+GOQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-8MAEJqAVpNSU/w0qKZFHvdweNdcIht3g0Of3gTEVqyR0R2ovNHCenSSfo5kAS8hfVZ1oxiEdTNdHrKmwq3vvRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v3.1.32\",\"sha512\":\"sha512-vV19A5M60cxvdRM3ZabhPjI6lz2svjXtbyD3n0lRz0FzxvztP4Vvf0nH1FXzwDVm/ydNL7UN3tlj62XjdNfKjQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v3.1.32\",\"sha512\":\"sha512-p9nogZAnicSfXmfpDCBlNJbszywmLhbV6/IbcK4qB4gb+9AF46OOnSVzMc2BVZmPsLfkQtSFVlG/chdttCqD9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v3.1.32\",\"sha512\":\"sha512-DswXqix50wAEPlovKVJ1VbPx+tYwXtwdh6zkpzGkq+Qn27Axs2iNUXdKffBjZsDBjeGavb7AEWYMrBz98a/5uA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v5.0.17\",\"sha512\":\"sha512-3x4x8sACczUaRusJAfZ8uG+lGxDSeeqb0d6PekygzgT44lQhaXKKof8yji3X4xH1JqHnprv1faChuZkD54OYNg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v5.0.17\",\"sha512\":\"sha512-/ytwOp85R5T/NTSmBL51+GlytssrC2Ov7CgZPJIWj/9u8pPI6unO1UZ219MrDZttGUWP1pHm7kJ7XaKbifjHlg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-LY6e3dnNfEkk7mrDOxx0JY63sioI2xskstHwC1O2StNJ6QjVWE5i3xDPJl6s1DidACTvZvm16XDPqnR/cITNLg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-H9co6YngYniZfzz8XER87mkQ03h2R1eR8NYKNZL1jEVnFQYHvPRZqN6pEhIhGVx+RiKhKDEGdHORFVZDVhTFbw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v5.0.17\",\"sha512\":\"sha512-cW3IvuCZC4ULbzsA4A3FznaUTFNXOJNCUDfFn9eN/t6tjJZe70tI4WAc51GApa3wC/B7Sy/S7yRsH+m5fDnjzA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v5.0.17\",\"sha512\":\"sha512-GjnT+8oke0YvrrbD2VlIcBmJ8HyqB0/zOpnNJ+f0dc0RzAQ/lSxCC7avT0Ly86as+zK5vU9TatXP++5VqspCZQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v5.0.17\",\"sha512\":\"sha512-ibTt4do4+2H3pShc5cvk/u3SG5zeiXMwi3HvTRNMKfnjd+UIjf4w364tXNoEADHrWokdUOX37k5icLvqCIqqNA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v6.0.28\",\"sha512\":\"sha512-TbFlTZBow3//Xi/x17srAg5mGjlWw2uUPxrjSGuryPhRXgtv52soisZ8C9BZYLTb6O7UeDiQlLXPSo8M0SJ0EA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v6.0.28\",\"sha512\":\"sha512-Y6jWqYf7+OByPyXoC1EtR47jM7BHzaWi+hXIWqYOwVKKmk7Xg76RtTUBogadB7lXTQRefIfyjrdpyb5RscXeRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v6.0.28\",\"sha512\":\"sha512-gbG9jNbLRQxiRJqLquC6ENWnpx9KpSjCiz4r3RDRoFwt0h1h7lmjeY86A3siA8zSZD9/ZWxnJhJ68Sr2bQhwow==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v6.0.28\",\"sha512\":\"sha512-9HGFHhyyj5ITWumA/IQrWR6qwHWR0hYuwyZxXR4ZKBKyQxedDZsFT+D/t1AQwPyeQyx6EmaUl7cd5ySht9H7Rg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v6.0.28\",\"sha512\":\"sha512-MEJB5al4h6eMrjyOT0sx7AiLYFqPf2x1DFnmcLpHQCRf45ZRE/HWjMc3le681Ygvt9F5QX7oGQKRH9Z3D3ckWw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v6.0.28\",\"sha512\":\"sha512-7jRowpiW573pInKSbWK5jvHSMTFvmRZ7r/l0AiVOCwp2b1EOFtCLrJDcEbs4r/tx2fTBjVjTDQ5aT+niQUhk0w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v6.0.28\",\"sha512\":\"sha512-tA94VL7eb4h4MOHy2rthhnPYUV9Dtnw2VeP5xFRxA8Rpsi5fDhR/79Q5P+RuF2Jml9fwoNKaMQ6jxQWaIgf+wQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v6.0.28\",\"sha512\":\"sha512-ny06bI55JoGI1SEyYXPjwgRqEPiPlvcz1nGZETwtjadwGg4XlD8nYwtqak2zLSQBKO+BMZ3CtkSEOyP65sHj0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v7.0.17\",\"sha512\":\"sha512-mAoME1kKZLrqJtxdcLY7VZZlRL8CWWsNkk1q4D8zumpuTSuB3/AvEdZ7rlnVUndWIB5SVv+l9mxOu6oIFMn8vw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v7.0.17\",\"sha512\":\"sha512-IgVZHEcjg8TL73xcNdj1qM7vmhwNzF4EZgOsQd7ruQX7NciUF7rseBmxS9bZYlthF73KAK1VnPAK2PRgnFqalA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v7.0.17\",\"sha512\":\"sha512-hG4CNgp5fZj9nmx2P7ZIYIjYxJFWcKQo2uQ6tkL/IazkrYwGvBjF52bU5WCZIwfk/MIwoiKVKWh4MihNOCI/yQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v7.0.17\",\"sha512\":\"sha512-FRDb8epYZ6sAfMf4NUhvDO/0IJelu8IvjR1w9DTaKYanaY2HLksMiXUDhNyjkTM45wHfePWu20+N9oqb7YBSjQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v7.0.17\",\"sha512\":\"sha512-ZKN9JsqzPCbF1r0F6Um2gvaBbEgaErQQ5yUYAscKadXylogCPnO3eTRb69z5bxLQdnru+NGMJ1fhd5+MDcRD1Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v7.0.17\",\"sha512\":\"sha512-J3HkImlFu6U6pBNX3yj1dkx29FV9iiHKgV+ePimT/YgwQFfIcxT874EuJxOvhd2uKbsGqgmpj5nBkURnY/gAaw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v7.0.17\",\"sha512\":\"sha512-Ns23KKE07LfqfzghWyd+DGTY/zf5EB9qj3cluFOuNWJ8d15Uffh89uKS4K/p940Wzpql4d2Bvu7mbP5L9V9JAQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v7.0.17\",\"sha512\":\"sha512-Wmf0oefdvcV+HESw8GlGrF2z511NER0ckIkuT4uZ861ZDefAoxmfJv2w6TVowAV1CAYOH60mt8yN/xqRUwm3pA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v8.0.3\",\"sha512\":\"sha512-G4o9Ih9kVUJNoCGDLGGKBOMuKiRDhowuWUnzqFTcy8viZ/ZgvzFGXzEr3P8xRsa3/T0qIZ+5qQCqhe7+dgXa8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v8.0.3\",\"sha512\":\"sha512-gKz5NE5xo9pruoe1K2pRmtCxTV3j1X6nhRfNmYMPk25uZJJMlXhjE4HuZez08p4T04z/XGuWQu8PSFOIVXUUgw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v8.0.3\",\"sha512\":\"sha512-ychlRX0pN0rrnJ2svau28Mho1fa4oVcK86M45tF432llzB0GItVdnsH12tp0iCI+y3Id2LoYroTQPuW0pdlO8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v8.0.3\",\"sha512\":\"sha512-fS1jmasVgjGkUTx9z/vLdDOeRAbjWv1Zoib6E8GZZAk3ldCHm4BV9jpQCFisVD5NpCe/+iOo+/9dpojYjEUEdA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v8.0.3\",\"sha512\":\"sha512-LrfJ8JM8zsqK1XeJ6oRzAeiek1n0y7I5J6xKdcaWTW1sMtm71ynoP5TB4uJpPl5meRhDstiSiyK2HfQJuxr2QA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v8.0.3\",\"sha512\":\"sha512-zqw7Ggssv8tHA8tB1XR0CzpYpRqzSIEA9dRaFKHDzBFZI17T0uLdCKnLqII8AtOVVQ0HEht6ZOR5DaQUtQ+pvQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v8.0.3\",\"sha512\":\"sha512-g2vmpZ7HTbKdtXgQch/puL9wTtiSgcbxYR09EofwkRmdVhY6KTNV6emxmUlj60YC8YsJyGhfAGxP0R+e+0oxVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v8.0.3\",\"sha512\":\"sha512-rOwbb11nYQr2OtYbjFw2AwEz1ohRqXEkhVCsIQ/jg/8OL/meNjFFc5bUYe8vRk1F3DOZWCUyqd4wcWcus6hthQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}" + ], + "targeting_pack_overrides": { + "microsoft.netcore.app.host.linux-x64": [], + "microsoft.netcore.app.host.linux-arm64": [], + "microsoft.netcore.app.host.linux-musl-x64": [], + "microsoft.netcore.app.host.linux-musl-arm64": [], + "microsoft.netcore.app.host.osx-x64": [], + "microsoft.netcore.app.host.win-x64": [], + "microsoft.netcore.app.host.win-arm64": [], + "microsoft.netcore.app.host.osx-arm64": [] + }, + "framework_list": { + "microsoft.netcore.app.host.linux-x64": [], + "microsoft.netcore.app.host.linux-arm64": [], + "microsoft.netcore.app.host.linux-musl-x64": [], + "microsoft.netcore.app.host.linux-musl-arm64": [], + "microsoft.netcore.app.host.osx-x64": [], + "microsoft.netcore.app.host.win-x64": [], + "microsoft.netcore.app.host.win-arm64": [], + "microsoft.netcore.app.host.osx-arm64": [] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "local_config_platform", + "platforms", + "platforms" + ], + [ + "platforms", + "host_platform", + "platforms~host_platform~host_platform" + ], + [ + "rules_dotnet~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_dotnet~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_dotnet~", + "local_config_platform", + "local_config_platform" + ], + [ + "rules_dotnet~", + "rules_dotnet", + "rules_dotnet~" + ] + ] + } + }, + "@@rules_dotnet~//dotnet/private/sdk/runtime_packs:dotnet.runtime_packs_extension.bzl%runtime_packs_extension": { + "general": { + "bzlTransitiveDigest": "HvMvGUtfGplSonj39m0W6FXD3yC/FcxzEt05OV0+azM=", + "usagesDigest": "08iIaAqLI5Jide8fYJyFU4KoUZ31BIFqsN4DOHEqx5A=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nuget.microsoft.netcore.app.runtime.linux-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "3.0.3", + "sha512": "sha512-SsEFpDY7x0sPe1ULwddZ7n5p4dfcOdx5wXPvGJQeYvjRs7J4dbqNfGTNPja+x0Zzl7mq0/oTobd6DSVIQpEdAw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "3.0.3", + "sha512": "sha512-20QbquU9rhPmfN4BOzNRup9mxOFvRqUiSKhWy2HX3tWQzbdftkR3A/vuXdNVGclIBeyXfKO+S3W3YP9Fz3pN2g==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "3.0.3", + "sha512": "sha512-DtrV3ONhk1E5hL17DM95SVJKV99BrlxjHlRAiEm1PY00NfX9dcowR5DOLc4FLmVKU629o5/xWa5rHITcLIrbwg==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "3.0.3", + "sha512": "sha512-hQFrym9SCn9M2kwnJ5GV91CbTsfZhLSmcb0HDX901DIc4zbCF1fB/VAeHhfTd/4/ADgbMNE/n/cG9she4bGHIQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "3.0.3", + "sha512": "sha512-dfHXm0iFa0QsOrbuTjO3EOXDHUelL90ZJuKfV//W1wekoBMKRhSbJPFq2SI99BGvQZJj7ysv9RT6QtIEiWfGXg==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "3.0.3", + "sha512": "sha512-Pwv8RB2F8LCVFpTL2kdCcNvru4EZsG1vSFljPClbpTJR3tF9mp0DAyxBbyfy6Tg2PwV4XMKysqy2tTd4zCqpBA==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "3.0.3", + "sha512": "sha512-W9wQFjLpXfqXbV17s0FnAlPCUadTo58sA/yrQIc+vmUkFZ8m20D+XkBAUG9u6mut+oJta8K269Tc628P0E/uSA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "3.1.32", + "sha512": "sha512-Sh3sRKcCjQwi7X9FPbbwz8tFygVewWLUiFO2/VnCOH40ZX9bix5nbESQxK0i8uy7OTuBDxNTGqcUvJxO+baw6A==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "3.1.32", + "sha512": "sha512-30BMqutTq3QcWEyz4xicVoFFBDzjjYVFGOArgXxWvjT6sYBPO+vJJXfWWPdawkYWLVu+auPB0mmH9+QwpeL0uA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "3.1.32", + "sha512": "sha512-jgeoftcDq2ks5Tb/2hI70KJzPYklL9cTmPISSq6MriPVOFhtZsbJwxuOrt86JanfolTujXe98kXbZXvUtpPmnw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "3.1.32", + "sha512": "sha512-5XvNdjhqnp3Hx7rmaXDW1GdVI5V3f3VXOQlnNAZ4nDZlQjNIEVRmxfbAwlE/XmnThwsldKa16kUSkd4yNgJEQw==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "3.1.32", + "sha512": "sha512-91V9PmRcFOJzY6lc3QzA2Vk7fLiTpaT/0a0DoYaaBOSXDX6sy0YjDa/PPYGDHUaYnxUUftqVmXz4Rd415ccAwg==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "3.1.32", + "sha512": "sha512-cVOGmQYfQoQbls4z3fT1otCY08PvQwSJj3Ur+zwcJwd6Ejq0aRIkiiZZUQNxB/P6W+pfRTA5xi01u5lZzMvcKw==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "3.1.32", + "sha512": "sha512-k1EL5k/HYiUoQoTygRfUVAKwtmtpDKo4GC00OxvElEIMG5FmpYtnT075jBFqB0b5J3y4CB0kfQf1gZaiV9DwlA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "5.0.17", + "sha512": "sha512-aZTIXNmm4nKrZP9iQrBAsuGFICZQdrZGbFq4p6StQ5eAfoWJK0maX/MWsXaWZGc/bc8o6h+v+elDxc29xuyo+g==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "5.0.17", + "sha512": "sha512-8EXts9kMDVCteF1p5bIokt/VSOG1f47xpqyARkXXQ1zmbSL6VpJxoVu5/TR4qcYOAUBvH+FfrjdThJJ0or4FAw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "5.0.17", + "sha512": "sha512-YlhkW0/2+ZiagSg1ZglBCrtTVUwtJJZZ+TDjgoKwdVcxahPYgpXsUDWtKfHVFxCAGccTZc92HecvAbFmfspbVQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "5.0.17", + "sha512": "sha512-us+amSBsQ885nIi2ApDzrDeBJKvvDCKSsGuF3wA7hxA9oFqpxpfijXpWARxTb3gzSOqjG6v/GjvOesWtTZTRWQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "5.0.17", + "sha512": "sha512-2sAAzMHaag8pSyGZxRG94a69UxRmWHaQ8p5qnrNgoFzTa1X0b+jsLqzNvrQgQba4fTtNc3lUoRdIfqaQJb6MmQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "5.0.17", + "sha512": "sha512-Q+VlqOuhbAg5vU2RsWhKnPTP/QaeHzLhes32Y0aPadzKCgxYAxt2Bng7QTdNXqzraENevQQCFR83/oOutMp4/w==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "5.0.17", + "sha512": "sha512-B2v3X59Gh8WD8079ZQJ68ipPA4qxjYHF++h0KqHhFMRIhVWwAMQfgkdPCSsnNyoNWZmXvVex/NQ3YWCV5LYFOA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "6.0.28", + "sha512": "sha512-MDWmRsrA316L/UmgPKDUfoVYKcuMNUmTBI9UC4BxNM6WriLgDHLDYeDITLZIuWcQYqncG5B17Fv+7PPxB9eN7Q==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "6.0.28", + "sha512": "sha512-x/m0RKyS4uO1BHd8w21v8FpdVousVgV6YVEZkAPalFH0BCf77CZVArSuYF3rxyINonVC9/D9gHRugHc9Rx4cLw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "6.0.28", + "sha512": "sha512-V29vC0FK0zHMF/JnOws/GB/JdN+V/S1Lw000H1Qk3gHNuRcv8OQF7si3N8mu91RfyM1QmVh5SE6VfgBy/s1Xng==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "6.0.28", + "sha512": "sha512-9PnNEXr70E8jMVgUId380xfB0r6V150SmXmJ8fy+yDjtplGOKPDqcLUtDMAhLK/3ue1EIXaC18jpUPGjTSDXRA==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "6.0.28", + "sha512": "sha512-yhk89RxfqaPoWEtK/5nEwZKRJsaDQ8hfAfYPOm0c1Rt5L9g3u/Hw1QywDupreJbRXG51WVtjGY1YnjazsUuWWQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "6.0.28", + "sha512": "sha512-pkj9McmSXRyde2DiNy3zjDwB9dY8x010YZw12l/K/TsmlhEY1XrVEULLz8e80PoRHUAabd8uB6cYahCEMQv9BA==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "6.0.28", + "sha512": "sha512-9sBd6kglHwKmE2IEsydN+eql5+iRwt4IECdAgpnmY64mCum9hIx3CVYCHwHItmdi0MV6dZG8MVwC7ky9AgI1tw==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "6.0.28", + "sha512": "sha512-Q/IkChRKqqhLKq2mJmFJazooX6/RsL3I1VcIBq6sMh+MJ6Y6qGW6IdW5PoQwd7ynfKtyDOdldpRlCZLP1Ua0dw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "7.0.17", + "sha512": "sha512-Lenw9OxCemj6UT+MZogIOflRpw3vmi8IdUXk327Lj0vibldfd9lUc3rO2zfzlTBD6fzz6BhXY3schiQtkWQ3Bw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "7.0.17", + "sha512": "sha512-Y1T97Qry9uRfg3w48o5SirDPPUZ5/fw5XtRQf8mhCDwWmo4Xn6uBTuto1YKAuR77RLRMGAvbqVLFWm2FTTxs3Q==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "7.0.17", + "sha512": "sha512-/+BWvytdGKhaoIUvYuswuvFGcfLHindOnkPsYT9DsqQNM3ymC9Y/wH9W2alIFHFlklYk7B9ClT4r6rsHpvq6ig==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "7.0.17", + "sha512": "sha512-nUMDckTRAg7+b+G6FtJ1MggLEpsjR0VDP6xs/JgtK4b27ftGhjSvbB2a87QncXsztiW5SwUGmS8wv0GjiDxTdQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "7.0.17", + "sha512": "sha512-0ssKzjvtDTkBHeqbhxACkrAxy1DUpIyqbAz4Epk4AwPOHSdzguAZXACQXBKrVz2FnNuHqqi0cZrtYX2UZ9I1Uw==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "7.0.17", + "sha512": "sha512-Hg/noPCsI4vHJBbE2bpexbDkKFKWNAjm7zhZP2mBNa6AcpqISgCyRAXCHIzTniRLq6JB0kddW8A5namdtkrxWw==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "7.0.17", + "sha512": "sha512-vKOq7wBnk8MYFUD0mWGo8nNCy6U4l0w+vFuygO1Z5SATUyg77vp8QwVwDIIT1iXVQgRZRRKdCZHaLkjmLGiWSQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "7.0.17", + "sha512": "sha512-YPOLaGXXkpTKgLMGBAtB/lIQltflhsbVZFbRMboscEW+r4dlTYpMwfhxfQxUmi9/IMjwiTFj6Ke1mw05DKuSxA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "8.0.3", + "sha512": "sha512-2qIyMyKP6lqX24X3459TYKmuYN866ZYP99/UxqteYOyZclGXV5rrdrxXsf1FAFM7EgcGR7uhfVtffeBINkuNlA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "8.0.3", + "sha512": "sha512-fSbx8v9UO3NChZb1IvrABhOq6y4ZWILlrjhBpRq89RT5x2WblYzfY7pHIvk7CnP/8mN4857VylIHe1Y4snP7lA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "8.0.3", + "sha512": "sha512-AMLgGVFu0yjaw+8DEW7uNgAI0TXPPl7dnwEnoS8wFLOak6IXodBfz69kpT4E9vqbiYG6WsDNxRpLD7n0FrfdXw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "8.0.3", + "sha512": "sha512-vIyT0Eb+7CnxvYeAvh7BeRDhqIGtgDegjVRiGRFETmEFRMmbvl253L6KBmEyn2O56nYvdUA+4NhlywahQ5Kpew==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "8.0.3", + "sha512": "sha512-uroqLZnzqE8vTPeQUdk3s7QXHPAoOiBIssTVMs8rBz9l+IRkpA0N6gQC0zYhkD+mFTMTXOl6HdO77kBN9NdPvQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "8.0.3", + "sha512": "sha512-WBfj2hlAwxNc3ihO1/eTTLt+FhOZSO3kgl8AaOYNX1AWzd7btkEPVYzWIJl01Xv1v917KP1iGxxkm3SN6LUXVA==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "8.0.3", + "sha512": "sha512-SxBniyhYkk4Z3yjmIWlbFDY/1xO6nPjgGK8vTnizSYDDC8Hazku1rSTVSbUoNoq9P8xg63akAmXTR7TwzOwnNQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "8.0.3", + "sha512": "sha512-BNCdzoSZ4xYXJF6/O2kYyYnR8ESI6524wmy5DNZWpegBT7tjzPnewpPnByFfqOCdgxHvA+K9yBWy7jTVa9Y9Pw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "3.0.3", + "sha512": "sha512-RD9dLMTl9G8p6eUkLLgFcU+deW+CFO6uJ0+5R1gS7piUQEPTuSDjVtO/NCGaWPC5rdgyGp82D79cmD5lW2yT8A==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "3.0.3", + "sha512": "sha512-NXATfeNJ2b3/SslsI/LbXIp1AaXM6yoKnEJQA2SW7LawfU+evBzoqgbcXap2AGRt1W+9VjavqaJCER+ilxnq9A==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "3.0.3", + "sha512": "sha512-jJYE+eZjILELbummWUpew6J2X0m/42fHn/rSTlgrKx4xy4NFm2jbmkpVmLq8B2jZpVum0gEpHj1aTFRfl+OgoQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "3.0.3", + "sha512": "sha512-MAWauBKz6sv6j/PXjSR0ow50GwZh8QlAY2vRlyN/MpcYhr5xf2UBt+P7g03MjGHCFImy3xBmt7gMvoDsen/gRQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "3.0.3", + "sha512": "sha512-HotMqTD/tTUSzdoDlFa0a42eZHdBJgAPm/EBHCsvX+Vxh93LBf6P/6CFsMhpuuly7lh3YcMhYuT/GucAtxd8zQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v3.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "3.0.3", + "sha512": "sha512-Y/So/PcccsoBY9QQuDIJLQamNKgBELmGWpZmdIyoXP80+TUqddM7r+BW51HZYheOmoKTh4YBECK7TUNVXCJZiA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "3.1.32", + "sha512": "sha512-pc/0skPzojvKnMMgUueo8aHwmdfF7oLrcmbtScSDi3eT6MejvwzzBVp63lgcsGM+OVLyojf79iBAicd/b7ykCw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "3.1.32", + "sha512": "sha512-Cgzc3B2gBawYYV1g1FVEVg0k9hotwGL3SPZ4ptGegs0Q6lOoIrLB7j+Vb99pTBmVs3NQs5IJeVzIaTvJ+g0Orw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "3.1.32", + "sha512": "sha512-CiDKX16Vbv4fy7I3HyPm7OKyhz6v61idhaDEr1kW0R+ZGCsV2vTNC864OzbovBL0Pmfb/qYQK7Ly4k5FsiVfHw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "3.1.32", + "sha512": "sha512-J0LbOrvRX/QJC+XSPM/v4v4b/wDJc8UKY9k8aR7mOYk6MfzkSuwc5Jz9yJzl9LCYuDb3hWYuYTZA+o8OqnZNZg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "3.1.32", + "sha512": "sha512-X7T+RFwnoDyFBe9+HzSqJ6MdqMEKrZBAZBDYhxhiKuR2St191gUJgbd7Ok9QpOHwrCaoYV9hysljG38k0VWLxw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "3.1.32", + "sha512": "sha512-8M5j6phvShGe10B27UVVXdKvMRyJ1Xp2iKBpdgB1UlrCTB5oGoIgQeK82j2iNwE+n+R0mL1CbTYrnib/mRFsdA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v3.1.32": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "3.1.32", + "sha512": "sha512-ME5y8L40XafMwpsTay6peXu4CtvWU+5onUnItr6YzPRJPJYvcd9h1pvBGeBbjuv7IV1Zt07zcuLBE+S40HlRXQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "5.0.17", + "sha512": "sha512-mDNoNuUVQf6fYNqgupRzjgbLPuqaj1dbTc01tY3g34TW6ARLtpnTPS8ur4ayMoNnlsQLpoy+Zi7ob0K1dNIZ0w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "5.0.17", + "sha512": "sha512-qOm4eEGPVMVd+z+CGo2C5l2Qss7hoWREpLILBhbAzS0B3Lb1pMyX7prz9R0l6WUuyeKoKRff2hIWfI69vsURhg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "5.0.17", + "sha512": "sha512-ZQsaMSvv1ygkbU1O5Ns4wlwu4BSGG/5fVSn82wozqCyEISmDNCQyh33iQgadLNefEQWhHUsdcFYb3OAYdfFSoQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "5.0.17", + "sha512": "sha512-HGXmMdpWSkhLkskxer6nrd7HVqGgpiGcxTOFpJgsucBEuiy6LXHFPQ9micU4WiAuosV52Qc8sVBmnhGeCcwNTg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "5.0.17", + "sha512": "sha512-CpsTwPpyC8vNhPLdruZhxe+ffDASsDsvFjLGQ6vvcRwCYGpzJoQ7z78jWHhfcXbh2rKUq67ve4LWiIlEF58kCg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "5.0.17", + "sha512": "sha512-jIZjwj5feyF7p95M0hosArKnBMajc2Zy86UIg6YUcR0mJkcbPpbS+ReLn8hY6Hkml4uJcQZs9ssQOPyJ97AN8w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v5.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "5.0.17", + "sha512": "sha512-dZajijsKrJJhOwts64gw4UMap0BwCW2+jyKVwkMPG6KypOosIoEn1Gg+XAWdo3GhBrqYvQ5XkPM1r63GglOqtA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "6.0.28", + "sha512": "sha512-damWlGv579s0bNotQ+Xcy+XZfDvZX9L7PJDTjd2nuRcS6ckIPwLWWkCmkaWFf5ndrjN2LrCxZ9ezZEtPBP2zOw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "6.0.28", + "sha512": "sha512-d7aCegi8yRJXbTaYhM75z3RIkji5Ld9qDi4MmCffxFjpEddmbQfib42gpBrGY1bdc/G6bhoRcHpM6pOnE0GY+g==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "6.0.28", + "sha512": "sha512-ARGJXod/9X+925y3kqoNVxNcTinKeXB+yVXa4wqWPyKB5rAaKyDfA+b27sehhJp3BtLElpd3naTnQXckOIxnqg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "6.0.28", + "sha512": "sha512-McoAlQkxd2UsXCAYps+mWRcYPaPFFu8AnvCVRPwwIcfPi5qzT2AdZOTi+qoy3V4LK+Gda97ZwLQjyhMwhmom6Q==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "6.0.28", + "sha512": "sha512-QCeL21tY7yCMxPSIITNDwOZ27ezSh1opva7QdJgOJ+Y794bWg9HXgmvpNmQnFEM8pnv5kr4xQ7iK7MOwdJuEsg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "6.0.28", + "sha512": "sha512-WE5/d59savB7vjvzXjvwN2G15qYG4kprGXWTH5iT/r7jkGs/D6CJNSHlPuP1FxHVK/aJrDIF3Ce8nsq65PlNhw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "6.0.28", + "sha512": "sha512-ZIXD7z1791YsZvhLD7BwdVe2OHIok7ajUY3/iT4pcIxLyk40WEXmGTqszPLz02BXbW4a6bgBKGHxU+FTJbNnHw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "6.0.28", + "sha512": "sha512-5dFuvDm5b/dxCHzXZBSse0fNcF2Zcc4fXolA00Grp134uFf/OxeNjVzmMVZ+Ebcqfrq5t5l5d6cuyhhbuZ8OVA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "7.0.17", + "sha512": "sha512-kZN1hTiJnOfmDLc3vsidd8bWY+MVd9FfRAkspl9VvePIUJUc0TUG8TonYP8pgjrypns25bQ6fgnKOIg0VpWPQQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "7.0.17", + "sha512": "sha512-jZK4BPVthpHGpLjSnSOy610NGSMIAbxQHlFGXL3AeKFDd69r3L/vdb+ipRqoNl6phxoL8h8bH4/E7UB6kuhUtA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "7.0.17", + "sha512": "sha512-qBhF/WbEGmX4CY4NDzsoH94Gf0re1ynHzZilV0Nt02MPm6yv2M0RO2FUOhMDIP2Iw0VIud3/WehAwrpMkJmt4A==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "7.0.17", + "sha512": "sha512-vm1pkIA5cXEaMZRStHWx8gw5oD+f+DGpo8oXi4Aqn44vIAUtITBjqglbQdgnqCHgopsK6Bgtul1Ubj2nZOCTkQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "7.0.17", + "sha512": "sha512-AAf0oXoirinh9T/hcVn0qvEW6DxpKP8aWQHX1qEL9FmIXVbBYH51pSNGL8vg7dxxoWYBrYJn14mX/wvlL2KKJQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "7.0.17", + "sha512": "sha512-64bQtKkPY02kZNsFMp9pMoikoyMsIy8GVcPD4fhG7QnekRby9Qkfvpocbr757VeEaDGZNWH/gBYdOdegu41Dcw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "7.0.17", + "sha512": "sha512-BKvRY/HBJ9N/uN8VAmiF9WB4jEz0Zest6v9thuAdxLf43IKuolO5zurSi2q+fuN6nuhgdYHj3zI1KszZrQ2Pcw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "7.0.17", + "sha512": "sha512-/vD8BdiGKmIsOHAmUxa8OoV/Wa1ItCTysSrkWSwG4FOj/sLHePw993Kwg6SsDO+/Jc1B6oCuk3wAs+ouiJhlpw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "8.0.3", + "sha512": "sha512-tKeUW1hAKtIm4opuSg82qncPcsJ606l6oikvUx6lgefenMnV6XVQeE6UUlDA+fpw2CM4zl4Ig0QDs4bVBFUgXw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "8.0.3", + "sha512": "sha512-KLCXZK7QWwl7v34Dr18FqyfsmS/BR2KW+MjX2ODxu2WXWUAA6Vy4pHhwGdS9KJsqU7XJpS7SJKjalM8dSy7WlA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "8.0.3", + "sha512": "sha512-zkbcDGiu7Bp1NaxVKaWrPyAyqEwEalMVXhHzXOOJrAjpYdnnY0X1DPnEpjDf4oy5k1dWKkPU2qlk+kXFWxMBvA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "8.0.3", + "sha512": "sha512-Vv2gGE+ijATF7WlOTNIEdnrROUZYlseHLW90VDRNHz5zoGnSt/sXLXlxcye+/rQKic3bvsiMqsKxgim0LkxQPw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "8.0.3", + "sha512": "sha512-atqmE/GBwxUBwHG1yukG3HikvD9shkwmehDc0ADM/b6DWxEUtkrSCW1rP3TMxMusaCtZXOaQw4NCtCI6uxF9Pw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "8.0.3", + "sha512": "sha512-8cr0QBFxcttwJAjAV+b7xzpW49lexXEBjS9BwxTqjTKRK31Zr+zwTZNgUOvfMbnV0YmUa0l+T7KDAiHHF00sYQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "8.0.3", + "sha512": "sha512-6ZRUQf4/7qzWWHtL+lyyUoRFlU/hRF0819VAVLAUQRnua6cpv4V4EkjhETHERhMaMQZCrHhKEoLP/CBb4tPT7w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "8.0.3", + "sha512": "sha512-jJTVu+l5nJn7KBUnV/bTfdxH8C43TTFuiRiJiLpnF8bw/J0BzFHZhr0Co4OXGpkSuuIMMFo5RDiywKrePAx5wQ==" + } + }, + "dotnet.runtime_packs": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_repo.bzl", + "ruleClassName": "_nuget_repo", + "attributes": { + "repo_name": "dotnet.runtime_packs", + "packages": [ + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v3.0.3\",\"sha512\":\"sha512-SsEFpDY7x0sPe1ULwddZ7n5p4dfcOdx5wXPvGJQeYvjRs7J4dbqNfGTNPja+x0Zzl7mq0/oTobd6DSVIQpEdAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v3.0.3\",\"sha512\":\"sha512-20QbquU9rhPmfN4BOzNRup9mxOFvRqUiSKhWy2HX3tWQzbdftkR3A/vuXdNVGclIBeyXfKO+S3W3YP9Fz3pN2g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-DtrV3ONhk1E5hL17DM95SVJKV99BrlxjHlRAiEm1PY00NfX9dcowR5DOLc4FLmVKU629o5/xWa5rHITcLIrbwg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-hQFrym9SCn9M2kwnJ5GV91CbTsfZhLSmcb0HDX901DIc4zbCF1fB/VAeHhfTd/4/ADgbMNE/n/cG9she4bGHIQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v3.0.3\",\"sha512\":\"sha512-dfHXm0iFa0QsOrbuTjO3EOXDHUelL90ZJuKfV//W1wekoBMKRhSbJPFq2SI99BGvQZJj7ysv9RT6QtIEiWfGXg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v3.0.3\",\"sha512\":\"sha512-Pwv8RB2F8LCVFpTL2kdCcNvru4EZsG1vSFljPClbpTJR3tF9mp0DAyxBbyfy6Tg2PwV4XMKysqy2tTd4zCqpBA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v3.0.3\",\"sha512\":\"sha512-W9wQFjLpXfqXbV17s0FnAlPCUadTo58sA/yrQIc+vmUkFZ8m20D+XkBAUG9u6mut+oJta8K269Tc628P0E/uSA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v3.1.32\",\"sha512\":\"sha512-Sh3sRKcCjQwi7X9FPbbwz8tFygVewWLUiFO2/VnCOH40ZX9bix5nbESQxK0i8uy7OTuBDxNTGqcUvJxO+baw6A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v3.1.32\",\"sha512\":\"sha512-30BMqutTq3QcWEyz4xicVoFFBDzjjYVFGOArgXxWvjT6sYBPO+vJJXfWWPdawkYWLVu+auPB0mmH9+QwpeL0uA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-jgeoftcDq2ks5Tb/2hI70KJzPYklL9cTmPISSq6MriPVOFhtZsbJwxuOrt86JanfolTujXe98kXbZXvUtpPmnw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-5XvNdjhqnp3Hx7rmaXDW1GdVI5V3f3VXOQlnNAZ4nDZlQjNIEVRmxfbAwlE/XmnThwsldKa16kUSkd4yNgJEQw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v3.1.32\",\"sha512\":\"sha512-91V9PmRcFOJzY6lc3QzA2Vk7fLiTpaT/0a0DoYaaBOSXDX6sy0YjDa/PPYGDHUaYnxUUftqVmXz4Rd415ccAwg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v3.1.32\",\"sha512\":\"sha512-cVOGmQYfQoQbls4z3fT1otCY08PvQwSJj3Ur+zwcJwd6Ejq0aRIkiiZZUQNxB/P6W+pfRTA5xi01u5lZzMvcKw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v3.1.32\",\"sha512\":\"sha512-k1EL5k/HYiUoQoTygRfUVAKwtmtpDKo4GC00OxvElEIMG5FmpYtnT075jBFqB0b5J3y4CB0kfQf1gZaiV9DwlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v5.0.17\",\"sha512\":\"sha512-aZTIXNmm4nKrZP9iQrBAsuGFICZQdrZGbFq4p6StQ5eAfoWJK0maX/MWsXaWZGc/bc8o6h+v+elDxc29xuyo+g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v5.0.17\",\"sha512\":\"sha512-8EXts9kMDVCteF1p5bIokt/VSOG1f47xpqyARkXXQ1zmbSL6VpJxoVu5/TR4qcYOAUBvH+FfrjdThJJ0or4FAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-YlhkW0/2+ZiagSg1ZglBCrtTVUwtJJZZ+TDjgoKwdVcxahPYgpXsUDWtKfHVFxCAGccTZc92HecvAbFmfspbVQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-us+amSBsQ885nIi2ApDzrDeBJKvvDCKSsGuF3wA7hxA9oFqpxpfijXpWARxTb3gzSOqjG6v/GjvOesWtTZTRWQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v5.0.17\",\"sha512\":\"sha512-2sAAzMHaag8pSyGZxRG94a69UxRmWHaQ8p5qnrNgoFzTa1X0b+jsLqzNvrQgQba4fTtNc3lUoRdIfqaQJb6MmQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v5.0.17\",\"sha512\":\"sha512-Q+VlqOuhbAg5vU2RsWhKnPTP/QaeHzLhes32Y0aPadzKCgxYAxt2Bng7QTdNXqzraENevQQCFR83/oOutMp4/w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v5.0.17\",\"sha512\":\"sha512-B2v3X59Gh8WD8079ZQJ68ipPA4qxjYHF++h0KqHhFMRIhVWwAMQfgkdPCSsnNyoNWZmXvVex/NQ3YWCV5LYFOA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v6.0.28\",\"sha512\":\"sha512-MDWmRsrA316L/UmgPKDUfoVYKcuMNUmTBI9UC4BxNM6WriLgDHLDYeDITLZIuWcQYqncG5B17Fv+7PPxB9eN7Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v6.0.28\",\"sha512\":\"sha512-x/m0RKyS4uO1BHd8w21v8FpdVousVgV6YVEZkAPalFH0BCf77CZVArSuYF3rxyINonVC9/D9gHRugHc9Rx4cLw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v6.0.28\",\"sha512\":\"sha512-V29vC0FK0zHMF/JnOws/GB/JdN+V/S1Lw000H1Qk3gHNuRcv8OQF7si3N8mu91RfyM1QmVh5SE6VfgBy/s1Xng==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v6.0.28\",\"sha512\":\"sha512-9PnNEXr70E8jMVgUId380xfB0r6V150SmXmJ8fy+yDjtplGOKPDqcLUtDMAhLK/3ue1EIXaC18jpUPGjTSDXRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v6.0.28\",\"sha512\":\"sha512-yhk89RxfqaPoWEtK/5nEwZKRJsaDQ8hfAfYPOm0c1Rt5L9g3u/Hw1QywDupreJbRXG51WVtjGY1YnjazsUuWWQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v6.0.28\",\"sha512\":\"sha512-pkj9McmSXRyde2DiNy3zjDwB9dY8x010YZw12l/K/TsmlhEY1XrVEULLz8e80PoRHUAabd8uB6cYahCEMQv9BA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v6.0.28\",\"sha512\":\"sha512-9sBd6kglHwKmE2IEsydN+eql5+iRwt4IECdAgpnmY64mCum9hIx3CVYCHwHItmdi0MV6dZG8MVwC7ky9AgI1tw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v6.0.28\",\"sha512\":\"sha512-Q/IkChRKqqhLKq2mJmFJazooX6/RsL3I1VcIBq6sMh+MJ6Y6qGW6IdW5PoQwd7ynfKtyDOdldpRlCZLP1Ua0dw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v7.0.17\",\"sha512\":\"sha512-Lenw9OxCemj6UT+MZogIOflRpw3vmi8IdUXk327Lj0vibldfd9lUc3rO2zfzlTBD6fzz6BhXY3schiQtkWQ3Bw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v7.0.17\",\"sha512\":\"sha512-Y1T97Qry9uRfg3w48o5SirDPPUZ5/fw5XtRQf8mhCDwWmo4Xn6uBTuto1YKAuR77RLRMGAvbqVLFWm2FTTxs3Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v7.0.17\",\"sha512\":\"sha512-/+BWvytdGKhaoIUvYuswuvFGcfLHindOnkPsYT9DsqQNM3ymC9Y/wH9W2alIFHFlklYk7B9ClT4r6rsHpvq6ig==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v7.0.17\",\"sha512\":\"sha512-nUMDckTRAg7+b+G6FtJ1MggLEpsjR0VDP6xs/JgtK4b27ftGhjSvbB2a87QncXsztiW5SwUGmS8wv0GjiDxTdQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v7.0.17\",\"sha512\":\"sha512-0ssKzjvtDTkBHeqbhxACkrAxy1DUpIyqbAz4Epk4AwPOHSdzguAZXACQXBKrVz2FnNuHqqi0cZrtYX2UZ9I1Uw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v7.0.17\",\"sha512\":\"sha512-Hg/noPCsI4vHJBbE2bpexbDkKFKWNAjm7zhZP2mBNa6AcpqISgCyRAXCHIzTniRLq6JB0kddW8A5namdtkrxWw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v7.0.17\",\"sha512\":\"sha512-vKOq7wBnk8MYFUD0mWGo8nNCy6U4l0w+vFuygO1Z5SATUyg77vp8QwVwDIIT1iXVQgRZRRKdCZHaLkjmLGiWSQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v7.0.17\",\"sha512\":\"sha512-YPOLaGXXkpTKgLMGBAtB/lIQltflhsbVZFbRMboscEW+r4dlTYpMwfhxfQxUmi9/IMjwiTFj6Ke1mw05DKuSxA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v8.0.3\",\"sha512\":\"sha512-2qIyMyKP6lqX24X3459TYKmuYN866ZYP99/UxqteYOyZclGXV5rrdrxXsf1FAFM7EgcGR7uhfVtffeBINkuNlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v8.0.3\",\"sha512\":\"sha512-fSbx8v9UO3NChZb1IvrABhOq6y4ZWILlrjhBpRq89RT5x2WblYzfY7pHIvk7CnP/8mN4857VylIHe1Y4snP7lA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v8.0.3\",\"sha512\":\"sha512-AMLgGVFu0yjaw+8DEW7uNgAI0TXPPl7dnwEnoS8wFLOak6IXodBfz69kpT4E9vqbiYG6WsDNxRpLD7n0FrfdXw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v8.0.3\",\"sha512\":\"sha512-vIyT0Eb+7CnxvYeAvh7BeRDhqIGtgDegjVRiGRFETmEFRMmbvl253L6KBmEyn2O56nYvdUA+4NhlywahQ5Kpew==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v8.0.3\",\"sha512\":\"sha512-uroqLZnzqE8vTPeQUdk3s7QXHPAoOiBIssTVMs8rBz9l+IRkpA0N6gQC0zYhkD+mFTMTXOl6HdO77kBN9NdPvQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v8.0.3\",\"sha512\":\"sha512-WBfj2hlAwxNc3ihO1/eTTLt+FhOZSO3kgl8AaOYNX1AWzd7btkEPVYzWIJl01Xv1v917KP1iGxxkm3SN6LUXVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v8.0.3\",\"sha512\":\"sha512-SxBniyhYkk4Z3yjmIWlbFDY/1xO6nPjgGK8vTnizSYDDC8Hazku1rSTVSbUoNoq9P8xg63akAmXTR7TwzOwnNQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v8.0.3\",\"sha512\":\"sha512-BNCdzoSZ4xYXJF6/O2kYyYnR8ESI6524wmy5DNZWpegBT7tjzPnewpPnByFfqOCdgxHvA+K9yBWy7jTVa9Y9Pw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v3.0.3\",\"sha512\":\"sha512-RD9dLMTl9G8p6eUkLLgFcU+deW+CFO6uJ0+5R1gS7piUQEPTuSDjVtO/NCGaWPC5rdgyGp82D79cmD5lW2yT8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v3.0.3\",\"sha512\":\"sha512-NXATfeNJ2b3/SslsI/LbXIp1AaXM6yoKnEJQA2SW7LawfU+evBzoqgbcXap2AGRt1W+9VjavqaJCER+ilxnq9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-jJYE+eZjILELbummWUpew6J2X0m/42fHn/rSTlgrKx4xy4NFm2jbmkpVmLq8B2jZpVum0gEpHj1aTFRfl+OgoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-MAWauBKz6sv6j/PXjSR0ow50GwZh8QlAY2vRlyN/MpcYhr5xf2UBt+P7g03MjGHCFImy3xBmt7gMvoDsen/gRQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v3.0.3\",\"sha512\":\"sha512-HotMqTD/tTUSzdoDlFa0a42eZHdBJgAPm/EBHCsvX+Vxh93LBf6P/6CFsMhpuuly7lh3YcMhYuT/GucAtxd8zQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v3.0.3\",\"sha512\":\"sha512-Y/So/PcccsoBY9QQuDIJLQamNKgBELmGWpZmdIyoXP80+TUqddM7r+BW51HZYheOmoKTh4YBECK7TUNVXCJZiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v3.1.32\",\"sha512\":\"sha512-pc/0skPzojvKnMMgUueo8aHwmdfF7oLrcmbtScSDi3eT6MejvwzzBVp63lgcsGM+OVLyojf79iBAicd/b7ykCw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v3.1.32\",\"sha512\":\"sha512-Cgzc3B2gBawYYV1g1FVEVg0k9hotwGL3SPZ4ptGegs0Q6lOoIrLB7j+Vb99pTBmVs3NQs5IJeVzIaTvJ+g0Orw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-CiDKX16Vbv4fy7I3HyPm7OKyhz6v61idhaDEr1kW0R+ZGCsV2vTNC864OzbovBL0Pmfb/qYQK7Ly4k5FsiVfHw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-J0LbOrvRX/QJC+XSPM/v4v4b/wDJc8UKY9k8aR7mOYk6MfzkSuwc5Jz9yJzl9LCYuDb3hWYuYTZA+o8OqnZNZg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v3.1.32\",\"sha512\":\"sha512-X7T+RFwnoDyFBe9+HzSqJ6MdqMEKrZBAZBDYhxhiKuR2St191gUJgbd7Ok9QpOHwrCaoYV9hysljG38k0VWLxw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v3.1.32\",\"sha512\":\"sha512-8M5j6phvShGe10B27UVVXdKvMRyJ1Xp2iKBpdgB1UlrCTB5oGoIgQeK82j2iNwE+n+R0mL1CbTYrnib/mRFsdA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v3.1.32\",\"sha512\":\"sha512-ME5y8L40XafMwpsTay6peXu4CtvWU+5onUnItr6YzPRJPJYvcd9h1pvBGeBbjuv7IV1Zt07zcuLBE+S40HlRXQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v5.0.17\",\"sha512\":\"sha512-mDNoNuUVQf6fYNqgupRzjgbLPuqaj1dbTc01tY3g34TW6ARLtpnTPS8ur4ayMoNnlsQLpoy+Zi7ob0K1dNIZ0w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v5.0.17\",\"sha512\":\"sha512-qOm4eEGPVMVd+z+CGo2C5l2Qss7hoWREpLILBhbAzS0B3Lb1pMyX7prz9R0l6WUuyeKoKRff2hIWfI69vsURhg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-ZQsaMSvv1ygkbU1O5Ns4wlwu4BSGG/5fVSn82wozqCyEISmDNCQyh33iQgadLNefEQWhHUsdcFYb3OAYdfFSoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-HGXmMdpWSkhLkskxer6nrd7HVqGgpiGcxTOFpJgsucBEuiy6LXHFPQ9micU4WiAuosV52Qc8sVBmnhGeCcwNTg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v5.0.17\",\"sha512\":\"sha512-CpsTwPpyC8vNhPLdruZhxe+ffDASsDsvFjLGQ6vvcRwCYGpzJoQ7z78jWHhfcXbh2rKUq67ve4LWiIlEF58kCg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v5.0.17\",\"sha512\":\"sha512-jIZjwj5feyF7p95M0hosArKnBMajc2Zy86UIg6YUcR0mJkcbPpbS+ReLn8hY6Hkml4uJcQZs9ssQOPyJ97AN8w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v5.0.17\",\"sha512\":\"sha512-dZajijsKrJJhOwts64gw4UMap0BwCW2+jyKVwkMPG6KypOosIoEn1Gg+XAWdo3GhBrqYvQ5XkPM1r63GglOqtA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v6.0.28\",\"sha512\":\"sha512-damWlGv579s0bNotQ+Xcy+XZfDvZX9L7PJDTjd2nuRcS6ckIPwLWWkCmkaWFf5ndrjN2LrCxZ9ezZEtPBP2zOw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v6.0.28\",\"sha512\":\"sha512-d7aCegi8yRJXbTaYhM75z3RIkji5Ld9qDi4MmCffxFjpEddmbQfib42gpBrGY1bdc/G6bhoRcHpM6pOnE0GY+g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v6.0.28\",\"sha512\":\"sha512-ARGJXod/9X+925y3kqoNVxNcTinKeXB+yVXa4wqWPyKB5rAaKyDfA+b27sehhJp3BtLElpd3naTnQXckOIxnqg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v6.0.28\",\"sha512\":\"sha512-McoAlQkxd2UsXCAYps+mWRcYPaPFFu8AnvCVRPwwIcfPi5qzT2AdZOTi+qoy3V4LK+Gda97ZwLQjyhMwhmom6Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v6.0.28\",\"sha512\":\"sha512-QCeL21tY7yCMxPSIITNDwOZ27ezSh1opva7QdJgOJ+Y794bWg9HXgmvpNmQnFEM8pnv5kr4xQ7iK7MOwdJuEsg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v6.0.28\",\"sha512\":\"sha512-WE5/d59savB7vjvzXjvwN2G15qYG4kprGXWTH5iT/r7jkGs/D6CJNSHlPuP1FxHVK/aJrDIF3Ce8nsq65PlNhw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v6.0.28\",\"sha512\":\"sha512-ZIXD7z1791YsZvhLD7BwdVe2OHIok7ajUY3/iT4pcIxLyk40WEXmGTqszPLz02BXbW4a6bgBKGHxU+FTJbNnHw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v6.0.28\",\"sha512\":\"sha512-5dFuvDm5b/dxCHzXZBSse0fNcF2Zcc4fXolA00Grp134uFf/OxeNjVzmMVZ+Ebcqfrq5t5l5d6cuyhhbuZ8OVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v7.0.17\",\"sha512\":\"sha512-kZN1hTiJnOfmDLc3vsidd8bWY+MVd9FfRAkspl9VvePIUJUc0TUG8TonYP8pgjrypns25bQ6fgnKOIg0VpWPQQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v7.0.17\",\"sha512\":\"sha512-jZK4BPVthpHGpLjSnSOy610NGSMIAbxQHlFGXL3AeKFDd69r3L/vdb+ipRqoNl6phxoL8h8bH4/E7UB6kuhUtA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v7.0.17\",\"sha512\":\"sha512-qBhF/WbEGmX4CY4NDzsoH94Gf0re1ynHzZilV0Nt02MPm6yv2M0RO2FUOhMDIP2Iw0VIud3/WehAwrpMkJmt4A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v7.0.17\",\"sha512\":\"sha512-vm1pkIA5cXEaMZRStHWx8gw5oD+f+DGpo8oXi4Aqn44vIAUtITBjqglbQdgnqCHgopsK6Bgtul1Ubj2nZOCTkQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v7.0.17\",\"sha512\":\"sha512-AAf0oXoirinh9T/hcVn0qvEW6DxpKP8aWQHX1qEL9FmIXVbBYH51pSNGL8vg7dxxoWYBrYJn14mX/wvlL2KKJQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v7.0.17\",\"sha512\":\"sha512-64bQtKkPY02kZNsFMp9pMoikoyMsIy8GVcPD4fhG7QnekRby9Qkfvpocbr757VeEaDGZNWH/gBYdOdegu41Dcw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v7.0.17\",\"sha512\":\"sha512-BKvRY/HBJ9N/uN8VAmiF9WB4jEz0Zest6v9thuAdxLf43IKuolO5zurSi2q+fuN6nuhgdYHj3zI1KszZrQ2Pcw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v7.0.17\",\"sha512\":\"sha512-/vD8BdiGKmIsOHAmUxa8OoV/Wa1ItCTysSrkWSwG4FOj/sLHePw993Kwg6SsDO+/Jc1B6oCuk3wAs+ouiJhlpw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v8.0.3\",\"sha512\":\"sha512-tKeUW1hAKtIm4opuSg82qncPcsJ606l6oikvUx6lgefenMnV6XVQeE6UUlDA+fpw2CM4zl4Ig0QDs4bVBFUgXw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v8.0.3\",\"sha512\":\"sha512-KLCXZK7QWwl7v34Dr18FqyfsmS/BR2KW+MjX2ODxu2WXWUAA6Vy4pHhwGdS9KJsqU7XJpS7SJKjalM8dSy7WlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v8.0.3\",\"sha512\":\"sha512-zkbcDGiu7Bp1NaxVKaWrPyAyqEwEalMVXhHzXOOJrAjpYdnnY0X1DPnEpjDf4oy5k1dWKkPU2qlk+kXFWxMBvA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v8.0.3\",\"sha512\":\"sha512-Vv2gGE+ijATF7WlOTNIEdnrROUZYlseHLW90VDRNHz5zoGnSt/sXLXlxcye+/rQKic3bvsiMqsKxgim0LkxQPw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v8.0.3\",\"sha512\":\"sha512-atqmE/GBwxUBwHG1yukG3HikvD9shkwmehDc0ADM/b6DWxEUtkrSCW1rP3TMxMusaCtZXOaQw4NCtCI6uxF9Pw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v8.0.3\",\"sha512\":\"sha512-8cr0QBFxcttwJAjAV+b7xzpW49lexXEBjS9BwxTqjTKRK31Zr+zwTZNgUOvfMbnV0YmUa0l+T7KDAiHHF00sYQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v8.0.3\",\"sha512\":\"sha512-6ZRUQf4/7qzWWHtL+lyyUoRFlU/hRF0819VAVLAUQRnua6cpv4V4EkjhETHERhMaMQZCrHhKEoLP/CBb4tPT7w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v8.0.3\",\"sha512\":\"sha512-jJTVu+l5nJn7KBUnV/bTfdxH8C43TTFuiRiJiLpnF8bw/J0BzFHZhr0Co4OXGpkSuuIMMFo5RDiywKrePAx5wQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.3\"}" + ], + "targeting_pack_overrides": { + "microsoft.netcore.app.runtime.linux-x64": [], + "microsoft.netcore.app.runtime.linux-arm64": [], + "microsoft.netcore.app.runtime.linux-musl-x64": [], + "microsoft.netcore.app.runtime.linux-musl-arm64": [], + "microsoft.netcore.app.runtime.osx-x64": [], + "microsoft.netcore.app.runtime.win-x64": [], + "microsoft.netcore.app.runtime.win-arm64": [], + "microsoft.netcore.app.runtime.osx-arm64": [], + "microsoft.aspnetcore.app.runtime.linux-x64": [], + "microsoft.aspnetcore.app.runtime.linux-arm64": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64": [], + "microsoft.aspnetcore.app.runtime.osx-x64": [], + "microsoft.aspnetcore.app.runtime.win-x64": [], + "microsoft.aspnetcore.app.runtime.win-arm64": [], + "microsoft.aspnetcore.app.runtime.osx-arm64": [] + }, + "framework_list": { + "microsoft.netcore.app.runtime.linux-x64": [], + "microsoft.netcore.app.runtime.linux-arm64": [], + "microsoft.netcore.app.runtime.linux-musl-x64": [], + "microsoft.netcore.app.runtime.linux-musl-arm64": [], + "microsoft.netcore.app.runtime.osx-x64": [], + "microsoft.netcore.app.runtime.win-x64": [], + "microsoft.netcore.app.runtime.win-arm64": [], + "microsoft.netcore.app.runtime.osx-arm64": [], + "microsoft.aspnetcore.app.runtime.linux-x64": [], + "microsoft.aspnetcore.app.runtime.linux-arm64": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64": [], + "microsoft.aspnetcore.app.runtime.osx-x64": [], + "microsoft.aspnetcore.app.runtime.win-x64": [], + "microsoft.aspnetcore.app.runtime.win-arm64": [], + "microsoft.aspnetcore.app.runtime.osx-arm64": [] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "local_config_platform", + "platforms", + "platforms" + ], + [ + "platforms", + "host_platform", + "platforms~host_platform~host_platform" + ], + [ + "rules_dotnet~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_dotnet~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_dotnet~", + "local_config_platform", + "local_config_platform" + ], + [ + "rules_dotnet~", + "rules_dotnet", + "rules_dotnet~" + ] + ] + } + }, + "@@rules_dotnet~//dotnet/private/sdk/targeting_packs:dotnet.targeting_packs_extension.bzl%targeting_packs_extension": { + "general": { + "bzlTransitiveDigest": "d/C9hvdlLuZuolzycCxdcaH+dDWI+dJLrDUpDXklnXw=", + "usagesDigest": "86xP9HsdN6Z26khmF53ToLBZWu/2HujbBpFyW6DV0ns=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nuget.netstandard.library.v1.6.1": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "netstandard.library", + "version": "1.6.1", + "sha512": "sha512-CXLcLbtJJeiW9ivOLlnU5IY5Mg7jitMBbc1IX71pNqDtCAc61e7yphLf8F38OQ85MP/5552HoGBw7rgSgnfL0A==" + } + }, + "nuget.netstandard.library.v2.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "netstandard.library", + "version": "2.0.3", + "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==" + } + }, + "nuget.netstandard.library.ref.v2.1.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "netstandard.library.ref", + "version": "2.1.0", + "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net20.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net20", + "version": "1.0.3", + "sha512": "sha512-M1vB2xSMJY0FdXNSUH4kjj04aTqWIOPUKeUUfaCoVA5JVw30XGO9ID7mUuBo+inSXLgmLvoMkSb3d98YEQwfyA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net35.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net35", + "version": "1.0.3", + "sha512": "sha512-l0U4pfjnh80q9nnMSy6h9OaaLt9289Qo2lOzYaoNXwz4BBUgx1FeQA/Bbz3hc1+CUvDpziG77O8i1DZ6bXIK+A==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net40.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net40", + "version": "1.0.3", + "sha512": "sha512-vUXmwPxi7lY1DEmxnrnve/a4JgN/Z1XE6Raozcmlqrf2OZxs9smXBb3Q9y2dZ2lCPtVMyZBRM4jQPBXz04InpQ==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net45.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net45", + "version": "1.0.3", + "sha512": "sha512-zPJ5Pqc6+cBg4ir33AWryA8CUxJJj68Cs1Cfo8plZt1HH3Q0B/EqVon6LRXw9b8dfQyLYMqTJJk2maXgLhGJIw==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net451.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net451", + "version": "1.0.3", + "sha512": "sha512-fS2Qwxx3JboJ2aUCknMGdM13SaYLsgurXehv+Lp5lnbl/lKwtH55S/uI3K7KRBH5CqGxLqBfWWJvAz/elS9ACA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net452.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net452", + "version": "1.0.3", + "sha512": "sha512-Els1ywsbLD/XpEgQWV0yMpAOHk0Lecz4jWmOeLwzGSFJ3KFXB+57wKjX4rEJxqJf97CIFnUmcO+pvIz8LfTXvw==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net46.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net46", + "version": "1.0.3", + "sha512": "sha512-2DUXmacjqNTXn5FE95qWE6bL22ae0m/0rL/SgK3aWsW6qClDzXVmo0kOLycCh6JV6i3dQU/KMuT2wtrT8EfZiA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net461.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net461", + "version": "1.0.3", + "sha512": "sha512-txfcwV2rUr4Dxr0r2jU637Dsx4W9Wo1PxHI5oTJPRsSsGHWV2QLS75DGm7vJ2e7sl9BMZZn174/ro3SDO/oBxg==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net462.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net462", + "version": "1.0.3", + "sha512": "sha512-HMn0QQmPYcJsVuKet9WA8IQbBweZvc7US88N39itSRqcn/1XOT/Kao1QiiykxU+vx8k7/zim11cVmKtunju4MA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net47.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net47", + "version": "1.0.3", + "sha512": "sha512-x2ENtw+CyAOV9EO1V5okeMkPkR8LGWW8F6xG+ndxwEq3GMlNmDo0CDBZtI690PP/0jMHTwlPwyQTvYBhUpGiZA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net471.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net471", + "version": "1.0.3", + "sha512": "sha512-Vxmc1FxJLU4hA0b2mcELn4O5S6P3AfxtlFHjg1Gw6oMaBPL8gMRt9XT+IODkzDWeJ9bX/yYN4EPiJMz9Zh/2hQ==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net472.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net472", + "version": "1.0.3", + "sha512": "sha512-PvZKpFbtsxtJBi6hJyzt/iaK71qGdu9mNVpJT43+i1Wp23ym57YVuQI+BEnO/99K2pxPMEgYtz62n7yZFEgi2A==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net48.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net48", + "version": "1.0.3", + "sha512": "sha512-XWKgyeNadNcTQaIVvQB8BrdCNrEar6fo/de1OdQRZ9HFy0jcBSaM8IV5q64ZampsSnC8AlTsACaGZUuoFw41RA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net481.v1.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net481", + "version": "1.0.3", + "sha512": "sha512-7q2vMYIMeNF2TU1/z8ZStlyALlfQjPRa3eCLwTT+6ErueWvXZsKF6MkjPXU0vglvjCP/5iXxhTMPzvuWRKJ1Ew==" + } + }, + "nuget.microsoft.netcore.app.v1.0.16": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "1.0.16", + "sha512": "sha512-BKKb2pT1E0j3PpRXOahEKoLYGCPecVWkvogMEQT+sHM1eZIdGTiDo10ZGeG7sZk3TJHt3VRvLOBk8QyrtzpyYw==" + } + }, + "nuget.microsoft.netcore.app.v1.1.13": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "1.1.13", + "sha512": "sha512-KkiJ9r8OprE+HzBNRBGGpvtBl2HwzoxCnu8NZaHV9h7XjCtGSdVKIna6LOFPqp98gqZ7HJ3AUE4zWCv5F7zyBQ==" + } + }, + "nuget.microsoft.netcore.app.v2.0.9": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "2.0.9", + "sha512": "sha512-RA35OXXK2enpLyFQrBW6N5WxPQLGJ8cx4SVNPa0PRLEmPcIu1OmdiPzOlqaB++7ejGWY5O3o3CKkOgEgsHzDqA==" + } + }, + "nuget.microsoft.netcore.app.v2.1.30": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "2.1.30", + "sha512": "sha512-rjXfBeXZZOixeTIXi8F+HkfXSf+iauTQg0wO+CZbzqDOm5XPesc2GypYQ0otFOBbfbFP4awZrZwNa60LaYVvYQ==" + } + }, + "nuget.microsoft.netcore.app.v2.2.8": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "2.2.8", + "sha512": "sha512-WZ0ojrXi2DZ66MWxds4jU7ZWUyMgKOQB7gyQ70ovrvbrhzu50XNUjnlfTT7ZpWoxKDGAfneDoJjTHoJk+Oa1RA==" + } + }, + "nuget.microsoft.netcore.app.ref.v3.0.1": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "3.0.1", + "sha512": "sha512-JPbWGLnLSKJoP+E4dqQd93QIQ4GqXXv/+iltuzd1hFXHEqf1Ie5oOK/x/Z/oJn6PeFTSvOghef32T4cBUi9C1A==" + } + }, + "nuget.microsoft.netcore.app.ref.v3.1.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "3.1.0", + "sha512": "sha512-cTXlQgzxZx5XsAIVw8tcdYhvPpcScA3vG3AQ/ScleqMn32SMBCIQqetoE0X0EqPSjW3S+hw/pRIUli0msjiJ9A==" + } + }, + "nuget.microsoft.netcore.app.ref.v5.0.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "5.0.0", + "sha512": "sha512-bBp1LYzTBY58dMaCABHnp44CYBcBvW7RrfSsXENaS7iRq/yx39g+jhWdgUBZcJQBoF6AZeGbHhKV+JAoT3LHDw==" + } + }, + "nuget.microsoft.netcore.app.ref.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "6.0.28", + "sha512": "sha512-mmtX/MfjTfwzU5Gd57m27azyB+29cdykscYNmtEhUZDn97DvRIgXRwha4PjLSwjFdnagLAd/87rbg/DGDzI78w==" + } + }, + "nuget.microsoft.netcore.app.ref.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "7.0.17", + "sha512": "sha512-sPK4r+HvhStfHd/eBJL9MPcjewU41RFCbPIEFau4kknDO7ayLcLw/rhgQeGkKdXQiYWm8smqeMPHP8SsCZj9RQ==" + } + }, + "nuget.microsoft.netcore.app.ref.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "8.0.3", + "sha512": "sha512-AMA998IeSADApTbNIKNoHz+RI4pseVFASpkibhnjildJ3ACPyTyji/mnDAQXPCpvQfP83F6/yeYuAI+aYoSOgQ==" + } + }, + "nuget.microsoft.aspnetcore.app.v2.1.34": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app", + "version": "2.1.34", + "sha512": "sha512-SIOjTfqVrxUu6Ov6YTO2Szq4qZ/FWjX0O4pFPz+bV6BVC5PJCEfkSrGE26rxuGENVMCuU6nNehDrpa/7rqhk6Q==" + } + }, + "nuget.microsoft.aspnetcore.app.v2.2.8": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app", + "version": "2.2.8", + "sha512": "sha512-tN5tV4OSYlw2Rw2AJVV2K2irF6ijReRgm0sQMuwVyR1+D8d6rgiZggGs/6QCut9mo8xtcH12g9RJmbpQwDJbnA==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v3.0.1": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "3.0.1", + "sha512": "sha512-WlsoQyUrygTLB389vvp/ORtgQlVq8l2fhFxA9kQ9L2QiMqNgVqycOUZkauc26Knf2uJ34XtrDj2q6zM8lNnRwQ==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v3.1.10": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "3.1.10", + "sha512": "sha512-yojrAwINItqiOp1XYc50AakRLEnJTOLSgCHdWMECI09NB+25i2eL/gaVcGfC/1986bsGGa/Afd85tcpFsuUnSQ==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v5.0.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "5.0.0", + "sha512": "sha512-WUXyfm24FMcGI+nADe0wJqBnQcGmtqrjhbJN+W2M9RZOc4TtUJDmmvpQabHwRWYQNoLjTJn/825gs5UKksOMog==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v6.0.28": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "6.0.28", + "sha512": "sha512-w9TnQpG7AazEtx6qCo6YNpzgzS6sGbTCSCkTnojUFzTGC/pSPnmcZej9ZCJP/BUGfO8kDWisGTmYzlk/OzlGuA==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v7.0.17": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "7.0.17", + "sha512": "sha512-/WhhNj33VNbZJtVm79JuWAOgrkqCA+A7JceHYJ7MLQySzxGC96SrphHpaWjCv5gzPvPyJsUX4EV2MctIFWMc0A==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v8.0.3": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "8.0.3", + "sha512": "sha512-63hpt6nuhCktaoYxAB2RgldBxYCQY6SQ/oJqWnsd3ooIcBgIBp8ksbuDyZctWypEi10P/kzlnXbNdslVwFLeDw==" + } + }, + "dotnet.targeting_packs": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_repo.bzl", + "ruleClassName": "_nuget_repo", + "attributes": { + "repo_name": "dotnet.targeting_packs", + "packages": [ + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"NETStandard.Library\",\"name\":\"netstandard.library.v1.6.1\",\"sha512\":\"sha512-CXLcLbtJJeiW9ivOLlnU5IY5Mg7jitMBbc1IX71pNqDtCAc61e7yphLf8F38OQ85MP/5552HoGBw7rgSgnfL0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.6.1\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"NETStandard.Library\",\"name\":\"netstandard.library.v2.0.3\",\"sha512\":\"sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.Win32.Primitives|4.0.3.0\",\"System.AppContext|4.1.2.0\",\"System.Buffers|4.0.3.0\",\"System.Collections.Concurrent|4.0.11.0\",\"System.Collections.NonGeneric|4.0.3.0\",\"System.Collections.Specialized|4.0.3.0\",\"System.Collections|4.0.11.0\",\"System.ComponentModel.Composition|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.0.11.0\",\"System.ComponentModel.Primitives|4.1.2.0\",\"System.ComponentModel.TypeConverter|4.1.2.0\",\"System.ComponentModel|4.0.1.0\",\"System.Console|4.0.2.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.1.2.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.1.0\",\"System.Diagnostics.Debug|4.0.11.0\",\"System.Diagnostics.FileVersionInfo|4.0.2.0\",\"System.Diagnostics.Process|4.1.2.0\",\"System.Diagnostics.StackTrace|4.0.4.0\",\"System.Diagnostics.TextWriterTraceListener|4.0.2.0\",\"System.Diagnostics.Tools|4.0.1.0\",\"System.Diagnostics.TraceSource|4.0.2.0\",\"System.Diagnostics.Tracing|4.1.2.0\",\"System.Drawing.Primitives|4.0.2.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.0.11.0\",\"System.Globalization.Calendars|4.0.3.0\",\"System.Globalization.Extensions|4.0.3.0\",\"System.Globalization|4.0.11.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.3.0\",\"System.IO.Compression|4.1.3.0\",\"System.IO.FileSystem.DriveInfo|4.0.2.0\",\"System.IO.FileSystem.Primitives|4.0.3.0\",\"System.IO.FileSystem.Watcher|4.0.2.0\",\"System.IO.FileSystem|4.0.3.0\",\"System.IO.IsolatedStorage|4.0.2.0\",\"System.IO.MemoryMappedFiles|4.0.2.0\",\"System.IO.Pipes|4.0.2.0\",\"System.IO.UnmanagedMemoryStream|4.0.3.0\",\"System.IO|4.1.2.0\",\"System.Linq.Expressions|4.1.2.0\",\"System.Linq.Parallel|4.0.1.0\",\"System.Linq.Queryable|4.0.1.0\",\"System.Linq|4.1.2.0\",\"System.Memory|4.0.2.0\",\"System.Net.Http|4.1.2.0\",\"System.Net.NameResolution|4.0.2.0\",\"System.Net.NetworkInformation|4.1.2.0\",\"System.Net.Ping|4.0.2.0\",\"System.Net.Primitives|4.0.11.0\",\"System.Net.Requests|4.0.11.0\",\"System.Net.Security|4.0.2.0\",\"System.Net.Sockets|4.1.2.0\",\"System.Net.WebHeaderCollection|4.0.1.0\",\"System.Net.WebSockets.Client|4.0.2.0\",\"System.Net.WebSockets|4.0.2.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.5.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.0.11.0\",\"System.Reflection.DispatchProxy|4.0.5.0\",\"System.Reflection.Emit.ILGeneration|4.0.1.0\",\"System.Reflection.Emit.Lightweight|4.0.1.0\",\"System.Reflection.Emit|4.0.1.0\",\"System.Reflection.Extensions|4.0.1.0\",\"System.Reflection.Primitives|4.0.1.0\",\"System.Reflection|4.1.2.0\",\"System.Resources.Reader|4.0.2.0\",\"System.Resources.ResourceManager|4.0.1.0\",\"System.Resources.Writer|4.0.2.0\",\"System.Runtime.CompilerServices.VisualC|4.0.2.0\",\"System.Runtime.Extensions|4.1.2.0\",\"System.Runtime.Handles|4.0.1.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.2.0\",\"System.Runtime.InteropServices|4.1.2.0\",\"System.Runtime.Numerics|4.0.1.0\",\"System.Runtime.Serialization.Formatters|4.0.2.0\",\"System.Runtime.Serialization.Json|4.0.1.0\",\"System.Runtime.Serialization.Primitives|4.1.3.0\",\"System.Runtime.Serialization.Xml|4.1.3.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.1.2.0\",\"System.Security.Claims|4.0.3.0\",\"System.Security.Cryptography.Algorithms|4.2.2.0\",\"System.Security.Cryptography.Csp|4.0.2.0\",\"System.Security.Cryptography.Encoding|4.0.2.0\",\"System.Security.Cryptography.Primitives|4.0.2.0\",\"System.Security.Cryptography.X509Certificates|4.1.2.0\",\"System.Security.Principal|4.0.1.0\",\"System.Security.SecureString|4.0.2.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.Text.Encoding.Extensions|4.0.11.0\",\"System.Text.Encoding|4.0.11.0\",\"System.Text.RegularExpressions|4.1.1.0\",\"System.Threading.Overlapped|4.0.3.0\",\"System.Threading.Tasks.Extensions|4.2.1.0\",\"System.Threading.Tasks.Parallel|4.0.1.0\",\"System.Threading.Tasks|4.0.11.0\",\"System.Threading.Thread|4.0.2.0\",\"System.Threading.ThreadPool|4.0.12.0\",\"System.Threading.Timer|4.0.1.0\",\"System.Threading|4.0.11.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.2.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.1.1.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.0.11.0\",\"System.Xml.XPath.XDocument|4.0.3.0\",\"System.Xml.XPath|4.0.3.0\",\"System.Xml.XmlDocument|4.0.3.0\",\"System.Xml.XmlSerializer|4.0.11.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"NETStandard.Library.Ref\",\"name\":\"netstandard.library.ref.v2.1.0\",\"sha512\":\"sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Primitives|4.3.0\",\"System.AppContext|4.3.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"2.1.0\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net20\",\"name\":\"microsoft.netframework.referenceassemblies.net20.v1.0.3\",\"sha512\":\"sha512-M1vB2xSMJY0FdXNSUH4kjj04aTqWIOPUKeUUfaCoVA5JVw30XGO9ID7mUuBo+inSXLgmLvoMkSb3d98YEQwfyA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net35\",\"name\":\"microsoft.netframework.referenceassemblies.net35.v1.0.3\",\"sha512\":\"sha512-l0U4pfjnh80q9nnMSy6h9OaaLt9289Qo2lOzYaoNXwz4BBUgx1FeQA/Bbz3hc1+CUvDpziG77O8i1DZ6bXIK+A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net40\",\"name\":\"microsoft.netframework.referenceassemblies.net40.v1.0.3\",\"sha512\":\"sha512-vUXmwPxi7lY1DEmxnrnve/a4JgN/Z1XE6Raozcmlqrf2OZxs9smXBb3Q9y2dZ2lCPtVMyZBRM4jQPBXz04InpQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net45\",\"name\":\"microsoft.netframework.referenceassemblies.net45.v1.0.3\",\"sha512\":\"sha512-zPJ5Pqc6+cBg4ir33AWryA8CUxJJj68Cs1Cfo8plZt1HH3Q0B/EqVon6LRXw9b8dfQyLYMqTJJk2maXgLhGJIw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net451\",\"name\":\"microsoft.netframework.referenceassemblies.net451.v1.0.3\",\"sha512\":\"sha512-fS2Qwxx3JboJ2aUCknMGdM13SaYLsgurXehv+Lp5lnbl/lKwtH55S/uI3K7KRBH5CqGxLqBfWWJvAz/elS9ACA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net452\",\"name\":\"microsoft.netframework.referenceassemblies.net452.v1.0.3\",\"sha512\":\"sha512-Els1ywsbLD/XpEgQWV0yMpAOHk0Lecz4jWmOeLwzGSFJ3KFXB+57wKjX4rEJxqJf97CIFnUmcO+pvIz8LfTXvw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net46\",\"name\":\"microsoft.netframework.referenceassemblies.net46.v1.0.3\",\"sha512\":\"sha512-2DUXmacjqNTXn5FE95qWE6bL22ae0m/0rL/SgK3aWsW6qClDzXVmo0kOLycCh6JV6i3dQU/KMuT2wtrT8EfZiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net461\",\"name\":\"microsoft.netframework.referenceassemblies.net461.v1.0.3\",\"sha512\":\"sha512-txfcwV2rUr4Dxr0r2jU637Dsx4W9Wo1PxHI5oTJPRsSsGHWV2QLS75DGm7vJ2e7sl9BMZZn174/ro3SDO/oBxg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net462\",\"name\":\"microsoft.netframework.referenceassemblies.net462.v1.0.3\",\"sha512\":\"sha512-HMn0QQmPYcJsVuKet9WA8IQbBweZvc7US88N39itSRqcn/1XOT/Kao1QiiykxU+vx8k7/zim11cVmKtunju4MA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net47\",\"name\":\"microsoft.netframework.referenceassemblies.net47.v1.0.3\",\"sha512\":\"sha512-x2ENtw+CyAOV9EO1V5okeMkPkR8LGWW8F6xG+ndxwEq3GMlNmDo0CDBZtI690PP/0jMHTwlPwyQTvYBhUpGiZA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net471\",\"name\":\"microsoft.netframework.referenceassemblies.net471.v1.0.3\",\"sha512\":\"sha512-Vxmc1FxJLU4hA0b2mcELn4O5S6P3AfxtlFHjg1Gw6oMaBPL8gMRt9XT+IODkzDWeJ9bX/yYN4EPiJMz9Zh/2hQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net472\",\"name\":\"microsoft.netframework.referenceassemblies.net472.v1.0.3\",\"sha512\":\"sha512-PvZKpFbtsxtJBi6hJyzt/iaK71qGdu9mNVpJT43+i1Wp23ym57YVuQI+BEnO/99K2pxPMEgYtz62n7yZFEgi2A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net48\",\"name\":\"microsoft.netframework.referenceassemblies.net48.v1.0.3\",\"sha512\":\"sha512-XWKgyeNadNcTQaIVvQB8BrdCNrEar6fo/de1OdQRZ9HFy0jcBSaM8IV5q64ZampsSnC8AlTsACaGZUuoFw41RA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net481\",\"name\":\"microsoft.netframework.referenceassemblies.net481.v1.0.3\",\"sha512\":\"sha512-7q2vMYIMeNF2TU1/z8ZStlyALlfQjPRa3eCLwTT+6ErueWvXZsKF6MkjPXU0vglvjCP/5iXxhTMPzvuWRKJ1Ew==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v1.0.16\",\"sha512\":\"sha512-BKKb2pT1E0j3PpRXOahEKoLYGCPecVWkvogMEQT+sHM1eZIdGTiDo10ZGeG7sZk3TJHt3VRvLOBk8QyrtzpyYw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.16\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v1.1.13\",\"sha512\":\"sha512-KkiJ9r8OprE+HzBNRBGGpvtBl2HwzoxCnu8NZaHV9h7XjCtGSdVKIna6LOFPqp98gqZ7HJ3AUE4zWCv5F7zyBQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.1.13\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.0.9\",\"sha512\":\"sha512-RA35OXXK2enpLyFQrBW6N5WxPQLGJ8cx4SVNPa0PRLEmPcIu1OmdiPzOlqaB++7ejGWY5O3o3CKkOgEgsHzDqA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.0.9\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.1.30\",\"sha512\":\"sha512-rjXfBeXZZOixeTIXi8F+HkfXSf+iauTQg0wO+CZbzqDOm5XPesc2GypYQ0otFOBbfbFP4awZrZwNa60LaYVvYQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.1.30\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.2.8\",\"sha512\":\"sha512-WZ0ojrXi2DZ66MWxds4jU7ZWUyMgKOQB7gyQ70ovrvbrhzu50XNUjnlfTT7ZpWoxKDGAfneDoJjTHoJk+Oa1RA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.2.8\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|4.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.4.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|4.1.1.0\",\"System.AppContext|4.2.1.0\",\"System.Buffers|4.0.2.0\",\"System.Collections.Concurrent|4.0.14.0\",\"System.Collections.Immutable|1.2.4.0\",\"System.Collections.NonGeneric|4.1.1.0\",\"System.Collections.Specialized|4.1.1.0\",\"System.Collections|4.1.1.0\",\"System.ComponentModel.Annotations|4.3.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.1.1.0\",\"System.ComponentModel.Primitives|4.2.1.0\",\"System.ComponentModel.TypeConverter|4.2.1.0\",\"System.ComponentModel|4.0.3.0\",\"System.Configuration|4.0.0.0\",\"System.Console|4.1.1.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.2.1.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.3.0\",\"System.Diagnostics.Debug|4.1.1.0\",\"System.Diagnostics.DiagnosticSource|4.0.4.0\",\"System.Diagnostics.FileVersionInfo|4.0.3.0\",\"System.Diagnostics.Process|4.2.1.0\",\"System.Diagnostics.StackTrace|4.1.1.0\",\"System.Diagnostics.TextWriterTraceListener|4.1.1.0\",\"System.Diagnostics.Tools|4.1.1.0\",\"System.Diagnostics.TraceSource|4.1.1.0\",\"System.Diagnostics.Tracing|4.2.1.0\",\"System.Drawing.Primitives|4.2.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.1.1.0\",\"System.Globalization.Calendars|4.1.1.0\",\"System.Globalization.Extensions|4.1.1.0\",\"System.Globalization|4.1.1.0\",\"System.IO.Compression.Brotli|4.2.1.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.4.0\",\"System.IO.Compression|4.2.1.0\",\"System.IO.FileSystem.DriveInfo|4.1.1.0\",\"System.IO.FileSystem.Primitives|4.1.1.0\",\"System.IO.FileSystem.Watcher|4.1.1.0\",\"System.IO.FileSystem|4.1.1.0\",\"System.IO.IsolatedStorage|4.1.1.0\",\"System.IO.MemoryMappedFiles|4.1.1.0\",\"System.IO.Pipes|4.1.1.0\",\"System.IO.UnmanagedMemoryStream|4.1.1.0\",\"System.IO|4.2.1.0\",\"System.Linq.Expressions|4.2.1.0\",\"System.Linq.Parallel|4.0.3.0\",\"System.Linq.Queryable|4.0.3.0\",\"System.Linq|4.2.1.0\",\"System.Memory|4.2.0.0\",\"System.Net.Http|4.2.1.0\",\"System.Net.HttpListener|4.0.1.0\",\"System.Net.Mail|4.0.1.0\",\"System.Net.NameResolution|4.1.1.0\",\"System.Net.NetworkInformation|4.2.1.0\",\"System.Net.Ping|4.1.1.0\",\"System.Net.Primitives|4.1.1.0\",\"System.Net.Requests|4.1.1.0\",\"System.Net.Security|4.1.1.0\",\"System.Net.ServicePoint|4.0.1.0\",\"System.Net.Sockets|4.2.1.0\",\"System.Net.WebClient|4.0.1.0\",\"System.Net.WebHeaderCollection|4.1.1.0\",\"System.Net.WebProxy|4.0.1.0\",\"System.Net.WebSockets.Client|4.1.1.0\",\"System.Net.WebSockets|4.1.1.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.5.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.1.1.0\",\"System.Reflection.DispatchProxy|4.0.5.0\",\"System.Reflection.Emit.ILGeneration|4.1.0.0\",\"System.Reflection.Emit.Lightweight|4.1.0.0\",\"System.Reflection.Emit|4.1.1.0\",\"System.Reflection.Extensions|4.1.1.0\",\"System.Reflection.Metadata|1.4.4.0\",\"System.Reflection.Primitives|4.1.1.0\",\"System.Reflection.TypeExtensions|4.1.2.0\",\"System.Reflection|4.2.1.0\",\"System.Resources.Reader|4.1.1.0\",\"System.Resources.ResourceManager|4.1.1.0\",\"System.Resources.Writer|4.1.1.0\",\"System.Runtime.CompilerServices.Unsafe|4.0.5.0\",\"System.Runtime.CompilerServices.VisualC|4.1.1.0\",\"System.Runtime.Extensions|4.2.1.0\",\"System.Runtime.Handles|4.1.1.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.3.0\",\"System.Runtime.InteropServices.WindowsRuntime|4.0.3.0\",\"System.Runtime.InteropServices|4.2.1.0\",\"System.Runtime.Intrinsics|4.0.0.0\",\"System.Runtime.Loader|4.1.0.0\",\"System.Runtime.Numerics|4.1.1.0\",\"System.Runtime.Serialization.Formatters|4.0.3.0\",\"System.Runtime.Serialization.Json|4.0.4.0\",\"System.Runtime.Serialization.Primitives|4.2.1.0\",\"System.Runtime.Serialization.Xml|4.1.4.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.2.1.0\",\"System.Security.Claims|4.1.1.0\",\"System.Security.Cryptography.Algorithms|4.3.1.0\",\"System.Security.Cryptography.Csp|4.1.1.0\",\"System.Security.Cryptography.Encoding|4.1.1.0\",\"System.Security.Cryptography.Primitives|4.1.1.0\",\"System.Security.Cryptography.X509Certificates|4.2.1.0\",\"System.Security.Principal|4.1.1.0\",\"System.Security.SecureString|4.1.1.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|4.1.2.0\",\"System.Text.Encoding.Extensions|4.1.1.0\",\"System.Text.Encoding|4.1.1.0\",\"System.Text.Encodings.Web|4.0.4.0\",\"System.Text.Json|4.0.0.0\",\"System.Text.RegularExpressions|4.2.1.0\",\"System.Threading.Channels|4.0.1.0\",\"System.Threading.Overlapped|4.1.1.0\",\"System.Threading.Tasks.Dataflow|4.6.4.0\",\"System.Threading.Tasks.Extensions|4.3.0.0\",\"System.Threading.Tasks.Parallel|4.0.3.0\",\"System.Threading.Tasks|4.1.1.0\",\"System.Threading.Thread|4.1.1.0\",\"System.Threading.ThreadPool|4.1.1.0\",\"System.Threading.Timer|4.1.1.0\",\"System.Threading|4.1.1.0\",\"System.Transactions.Local|4.0.1.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|4.0.1.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.2.1.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.1.1.0\",\"System.Xml.XPath.XDocument|4.1.1.0\",\"System.Xml.XPath|4.1.1.0\",\"System.Xml.XmlDocument|4.1.1.0\",\"System.Xml.XmlSerializer|4.1.1.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v3.0.1\",\"sha512\":\"sha512-JPbWGLnLSKJoP+E4dqQd93QIQ4GqXXv/+iltuzd1hFXHEqf1Ie5oOK/x/Z/oJn6PeFTSvOghef32T4cBUi9C1A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"3.0.1\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|4.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.5.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|4.1.2.0\",\"System.AppContext|4.2.2.0\",\"System.Buffers|4.0.2.0\",\"System.Collections.Concurrent|4.0.15.0\",\"System.Collections.Immutable|1.2.5.0\",\"System.Collections.NonGeneric|4.1.2.0\",\"System.Collections.Specialized|4.1.2.0\",\"System.Collections|4.1.2.0\",\"System.ComponentModel.Annotations|4.3.1.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.1.2.0\",\"System.ComponentModel.Primitives|4.2.2.0\",\"System.ComponentModel.TypeConverter|4.2.2.0\",\"System.ComponentModel|4.0.4.0\",\"System.Configuration|4.0.0.0\",\"System.Console|4.1.2.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.2.2.0\",\"System.Data.DataSetExtensions|4.0.1.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.4.0\",\"System.Diagnostics.Debug|4.1.2.0\",\"System.Diagnostics.DiagnosticSource|4.0.5.0\",\"System.Diagnostics.FileVersionInfo|4.0.4.0\",\"System.Diagnostics.Process|4.2.2.0\",\"System.Diagnostics.StackTrace|4.1.2.0\",\"System.Diagnostics.TextWriterTraceListener|4.1.2.0\",\"System.Diagnostics.Tools|4.1.2.0\",\"System.Diagnostics.TraceSource|4.1.2.0\",\"System.Diagnostics.Tracing|4.2.2.0\",\"System.Drawing.Primitives|4.2.1.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.1.2.0\",\"System.Globalization.Calendars|4.1.2.0\",\"System.Globalization.Extensions|4.1.2.0\",\"System.Globalization|4.1.2.0\",\"System.IO.Compression.Brotli|4.2.2.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.5.0\",\"System.IO.Compression|4.2.2.0\",\"System.IO.FileSystem.DriveInfo|4.1.2.0\",\"System.IO.FileSystem.Primitives|4.1.2.0\",\"System.IO.FileSystem.Watcher|4.1.2.0\",\"System.IO.FileSystem|4.1.2.0\",\"System.IO.IsolatedStorage|4.1.2.0\",\"System.IO.MemoryMappedFiles|4.1.2.0\",\"System.IO.Pipes|4.1.2.0\",\"System.IO.UnmanagedMemoryStream|4.1.2.0\",\"System.IO|4.2.2.0\",\"System.Linq.Expressions|4.2.2.0\",\"System.Linq.Parallel|4.0.4.0\",\"System.Linq.Queryable|4.0.4.0\",\"System.Linq|4.2.2.0\",\"System.Memory|4.2.1.0\",\"System.Net.Http|4.2.2.0\",\"System.Net.HttpListener|4.0.2.0\",\"System.Net.Mail|4.0.2.0\",\"System.Net.NameResolution|4.1.2.0\",\"System.Net.NetworkInformation|4.2.2.0\",\"System.Net.Ping|4.1.2.0\",\"System.Net.Primitives|4.1.2.0\",\"System.Net.Requests|4.1.2.0\",\"System.Net.Security|4.1.2.0\",\"System.Net.ServicePoint|4.0.2.0\",\"System.Net.Sockets|4.2.2.0\",\"System.Net.WebClient|4.0.2.0\",\"System.Net.WebHeaderCollection|4.1.2.0\",\"System.Net.WebProxy|4.0.2.0\",\"System.Net.WebSockets.Client|4.1.2.0\",\"System.Net.WebSockets|4.1.2.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.6.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.1.2.0\",\"System.Reflection.DispatchProxy|4.0.6.0\",\"System.Reflection.Emit.ILGeneration|4.1.1.0\",\"System.Reflection.Emit.Lightweight|4.1.1.0\",\"System.Reflection.Emit|4.1.2.0\",\"System.Reflection.Extensions|4.1.2.0\",\"System.Reflection.Metadata|1.4.5.0\",\"System.Reflection.Primitives|4.1.2.0\",\"System.Reflection.TypeExtensions|4.1.2.0\",\"System.Reflection|4.2.2.0\",\"System.Resources.Reader|4.1.2.0\",\"System.Resources.ResourceManager|4.1.2.0\",\"System.Resources.Writer|4.1.2.0\",\"System.Runtime.CompilerServices.Unsafe|4.0.6.0\",\"System.Runtime.CompilerServices.VisualC|4.1.2.0\",\"System.Runtime.Extensions|4.2.2.0\",\"System.Runtime.Handles|4.1.2.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.4.0\",\"System.Runtime.InteropServices.WindowsRuntime|4.0.4.0\",\"System.Runtime.InteropServices|4.2.2.0\",\"System.Runtime.Intrinsics|4.0.1.0\",\"System.Runtime.Loader|4.1.1.0\",\"System.Runtime.Numerics|4.1.2.0\",\"System.Runtime.Serialization.Formatters|4.0.4.0\",\"System.Runtime.Serialization.Json|4.0.5.0\",\"System.Runtime.Serialization.Primitives|4.2.2.0\",\"System.Runtime.Serialization.Xml|4.1.5.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.2.2.0\",\"System.Security.Claims|4.1.2.0\",\"System.Security.Cryptography.Algorithms|4.3.2.0\",\"System.Security.Cryptography.Csp|4.1.2.0\",\"System.Security.Cryptography.Encoding|4.1.2.0\",\"System.Security.Cryptography.Primitives|4.1.2.0\",\"System.Security.Cryptography.X509Certificates|4.2.2.0\",\"System.Security.Principal|4.1.2.0\",\"System.Security.SecureString|4.1.2.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|4.1.3.0\",\"System.Text.Encoding.Extensions|4.1.2.0\",\"System.Text.Encoding|4.1.2.0\",\"System.Text.Encodings.Web|4.0.5.0\",\"System.Text.Json|4.0.1.0\",\"System.Text.RegularExpressions|4.2.2.0\",\"System.Threading.Channels|4.0.2.0\",\"System.Threading.Overlapped|4.1.2.0\",\"System.Threading.Tasks.Dataflow|4.6.5.0\",\"System.Threading.Tasks.Extensions|4.3.1.0\",\"System.Threading.Tasks.Parallel|4.0.4.0\",\"System.Threading.Tasks|4.1.2.0\",\"System.Threading.Thread|4.1.2.0\",\"System.Threading.ThreadPool|4.1.2.0\",\"System.Threading.Timer|4.1.2.0\",\"System.Threading|4.1.2.0\",\"System.Transactions.Local|4.0.2.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|4.0.2.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.2.2.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.1.2.0\",\"System.Xml.XPath.XDocument|4.1.2.0\",\"System.Xml.XPath|4.1.2.0\",\"System.Xml.XmlDocument|4.1.2.0\",\"System.Xml.XmlSerializer|4.1.2.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v3.1.0\",\"sha512\":\"sha512-cTXlQgzxZx5XsAIVw8tcdYhvPpcScA3vG3AQ/ScleqMn32SMBCIQqetoE0X0EqPSjW3S+hw/pRIUli0msjiJ9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"3.1.0\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|5.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.6.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|5.0.0.0\",\"System.AppContext|5.0.0.0\",\"System.Buffers|5.0.0.0\",\"System.Collections.Concurrent|5.0.0.0\",\"System.Collections.Immutable|5.0.0.0\",\"System.Collections.NonGeneric|5.0.0.0\",\"System.Collections.Specialized|5.0.0.0\",\"System.Collections|5.0.0.0\",\"System.ComponentModel.Annotations|5.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|5.0.0.0\",\"System.ComponentModel.Primitives|5.0.0.0\",\"System.ComponentModel.TypeConverter|5.0.0.0\",\"System.ComponentModel|5.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|5.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|5.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|5.0.0.0\",\"System.Diagnostics.Debug|5.0.0.0\",\"System.Diagnostics.DiagnosticSource|5.0.0.0\",\"System.Diagnostics.FileVersionInfo|5.0.0.0\",\"System.Diagnostics.Process|5.0.0.0\",\"System.Diagnostics.StackTrace|5.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|5.0.0.0\",\"System.Diagnostics.Tools|5.0.0.0\",\"System.Diagnostics.TraceSource|5.0.0.0\",\"System.Diagnostics.Tracing|5.0.0.0\",\"System.Drawing.Primitives|5.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|5.0.0.0\",\"System.Formats.Asn1|5.0.0.0\",\"System.Globalization.Calendars|5.0.0.0\",\"System.Globalization.Extensions|5.0.0.0\",\"System.Globalization|5.0.0.0\",\"System.IO.Compression.Brotli|5.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|5.0.0.0\",\"System.IO.Compression|5.0.0.0\",\"System.IO.FileSystem.DriveInfo|5.0.0.0\",\"System.IO.FileSystem.Primitives|5.0.0.0\",\"System.IO.FileSystem.Watcher|5.0.0.0\",\"System.IO.FileSystem|5.0.0.0\",\"System.IO.IsolatedStorage|5.0.0.0\",\"System.IO.MemoryMappedFiles|5.0.0.0\",\"System.IO.Pipes|5.0.0.0\",\"System.IO.UnmanagedMemoryStream|5.0.0.0\",\"System.IO|5.0.0.0\",\"System.Linq.Expressions|5.0.0.0\",\"System.Linq.Parallel|5.0.0.0\",\"System.Linq.Queryable|5.0.0.0\",\"System.Linq|5.0.0.0\",\"System.Memory|5.0.0.0\",\"System.Net.Http.Json|5.0.0.0\",\"System.Net.Http|5.0.0.0\",\"System.Net.HttpListener|5.0.0.0\",\"System.Net.Mail|5.0.0.0\",\"System.Net.NameResolution|5.0.0.0\",\"System.Net.NetworkInformation|5.0.0.0\",\"System.Net.Ping|5.0.0.0\",\"System.Net.Primitives|5.0.0.0\",\"System.Net.Requests|5.0.0.0\",\"System.Net.Security|5.0.0.0\",\"System.Net.ServicePoint|5.0.0.0\",\"System.Net.Sockets|5.0.0.0\",\"System.Net.WebClient|5.0.0.0\",\"System.Net.WebHeaderCollection|5.0.0.0\",\"System.Net.WebProxy|5.0.0.0\",\"System.Net.WebSockets.Client|5.0.0.0\",\"System.Net.WebSockets|5.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|5.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|5.0.0.0\",\"System.Reflection.DispatchProxy|5.0.0.0\",\"System.Reflection.Emit.ILGeneration|5.0.0.0\",\"System.Reflection.Emit.Lightweight|5.0.0.0\",\"System.Reflection.Emit|5.0.0.0\",\"System.Reflection.Extensions|5.0.0.0\",\"System.Reflection.Metadata|5.0.0.0\",\"System.Reflection.Primitives|5.0.0.0\",\"System.Reflection.TypeExtensions|5.0.0.0\",\"System.Reflection|5.0.0.0\",\"System.Resources.Reader|5.0.0.0\",\"System.Resources.ResourceManager|5.0.0.0\",\"System.Resources.Writer|5.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|5.0.0.0\",\"System.Runtime.CompilerServices.VisualC|5.0.0.0\",\"System.Runtime.Extensions|5.0.0.0\",\"System.Runtime.Handles|5.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|5.0.0.0\",\"System.Runtime.InteropServices|5.0.0.0\",\"System.Runtime.Intrinsics|5.0.0.0\",\"System.Runtime.Loader|5.0.0.0\",\"System.Runtime.Numerics|5.0.0.0\",\"System.Runtime.Serialization.Formatters|5.0.0.0\",\"System.Runtime.Serialization.Json|5.0.0.0\",\"System.Runtime.Serialization.Primitives|5.0.0.0\",\"System.Runtime.Serialization.Xml|5.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|5.0.0.0\",\"System.Security.Claims|5.0.0.0\",\"System.Security.Cryptography.Algorithms|5.0.0.0\",\"System.Security.Cryptography.Csp|5.0.0.0\",\"System.Security.Cryptography.Encoding|5.0.0.0\",\"System.Security.Cryptography.Primitives|5.0.0.0\",\"System.Security.Cryptography.X509Certificates|5.0.0.0\",\"System.Security.Principal|5.0.0.0\",\"System.Security.SecureString|5.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|5.0.0.0\",\"System.Text.Encoding.Extensions|5.0.0.0\",\"System.Text.Encoding|5.0.0.0\",\"System.Text.Encodings.Web|5.0.0.0\",\"System.Text.Json|5.0.0.0\",\"System.Text.RegularExpressions|5.0.0.0\",\"System.Threading.Channels|5.0.0.0\",\"System.Threading.Overlapped|5.0.0.0\",\"System.Threading.Tasks.Dataflow|5.0.0.0\",\"System.Threading.Tasks.Extensions|5.0.0.0\",\"System.Threading.Tasks.Parallel|5.0.0.0\",\"System.Threading.Tasks|5.0.0.0\",\"System.Threading.Thread|5.0.0.0\",\"System.Threading.ThreadPool|5.0.0.0\",\"System.Threading.Timer|5.0.0.0\",\"System.Threading|5.0.0.0\",\"System.Transactions.Local|5.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|5.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|5.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|5.0.0.0\",\"System.Xml.XPath.XDocument|5.0.0.0\",\"System.Xml.XPath|5.0.0.0\",\"System.Xml.XmlDocument|5.0.0.0\",\"System.Xml.XmlSerializer|5.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v5.0.0\",\"sha512\":\"sha512-bBp1LYzTBY58dMaCABHnp44CYBcBvW7RrfSsXENaS7iRq/yx39g+jhWdgUBZcJQBoF6AZeGbHhKV+JAoT3LHDw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"5.0.0\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|6.0.0.0\",\"Microsoft.VisualBasic.Core|11.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|6.0.0.0\",\"Microsoft.Win32.Registry|6.0.0.0\",\"System.AppContext|6.0.0.0\",\"System.Buffers|6.0.0.0\",\"System.Collections.Concurrent|6.0.0.0\",\"System.Collections.Immutable|6.0.0.0\",\"System.Collections.NonGeneric|6.0.0.0\",\"System.Collections.Specialized|6.0.0.0\",\"System.Collections|6.0.0.0\",\"System.ComponentModel.Annotations|6.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|6.0.0.0\",\"System.ComponentModel.Primitives|6.0.0.0\",\"System.ComponentModel.TypeConverter|6.0.0.0\",\"System.ComponentModel|6.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|6.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|6.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|6.0.0.0\",\"System.Diagnostics.Debug|6.0.0.0\",\"System.Diagnostics.DiagnosticSource|6.0.0.0\",\"System.Diagnostics.FileVersionInfo|6.0.0.0\",\"System.Diagnostics.Process|6.0.0.0\",\"System.Diagnostics.StackTrace|6.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|6.0.0.0\",\"System.Diagnostics.Tools|6.0.0.0\",\"System.Diagnostics.TraceSource|6.0.0.0\",\"System.Diagnostics.Tracing|6.0.0.0\",\"System.Drawing.Primitives|6.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|6.0.0.0\",\"System.Formats.Asn1|6.0.0.0\",\"System.Globalization.Calendars|6.0.0.0\",\"System.Globalization.Extensions|6.0.0.0\",\"System.Globalization|6.0.0.0\",\"System.IO.Compression.Brotli|6.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|6.0.0.0\",\"System.IO.Compression|6.0.0.0\",\"System.IO.FileSystem.AccessControl|6.0.0.0\",\"System.IO.FileSystem.DriveInfo|6.0.0.0\",\"System.IO.FileSystem.Primitives|6.0.0.0\",\"System.IO.FileSystem.Watcher|6.0.0.0\",\"System.IO.FileSystem|6.0.0.0\",\"System.IO.IsolatedStorage|6.0.0.0\",\"System.IO.MemoryMappedFiles|6.0.0.0\",\"System.IO.Pipes.AccessControl|6.0.0.0\",\"System.IO.Pipes|6.0.0.0\",\"System.IO.UnmanagedMemoryStream|6.0.0.0\",\"System.IO|6.0.0.0\",\"System.Linq.Expressions|6.0.0.0\",\"System.Linq.Parallel|6.0.0.0\",\"System.Linq.Queryable|6.0.0.0\",\"System.Linq|6.0.0.0\",\"System.Memory|6.0.0.0\",\"System.Net.Http.Json|6.0.0.0\",\"System.Net.Http|6.0.0.0\",\"System.Net.HttpListener|6.0.0.0\",\"System.Net.Mail|6.0.0.0\",\"System.Net.NameResolution|6.0.0.0\",\"System.Net.NetworkInformation|6.0.0.0\",\"System.Net.Ping|6.0.0.0\",\"System.Net.Primitives|6.0.0.0\",\"System.Net.Requests|6.0.0.0\",\"System.Net.Security|6.0.0.0\",\"System.Net.ServicePoint|6.0.0.0\",\"System.Net.Sockets|6.0.0.0\",\"System.Net.WebClient|6.0.0.0\",\"System.Net.WebHeaderCollection|6.0.0.0\",\"System.Net.WebProxy|6.0.0.0\",\"System.Net.WebSockets.Client|6.0.0.0\",\"System.Net.WebSockets|6.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|6.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|6.0.0.0\",\"System.Reflection.DispatchProxy|6.0.0.0\",\"System.Reflection.Emit.ILGeneration|6.0.0.0\",\"System.Reflection.Emit.Lightweight|6.0.0.0\",\"System.Reflection.Emit|6.0.0.0\",\"System.Reflection.Extensions|6.0.0.0\",\"System.Reflection.Metadata|6.0.0.0\",\"System.Reflection.Primitives|6.0.0.0\",\"System.Reflection.TypeExtensions|6.0.0.0\",\"System.Reflection|6.0.0.0\",\"System.Resources.Reader|6.0.0.0\",\"System.Resources.ResourceManager|6.0.0.0\",\"System.Resources.Writer|6.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|6.0.0.0\",\"System.Runtime.CompilerServices.VisualC|6.0.0.0\",\"System.Runtime.Extensions|6.0.0.0\",\"System.Runtime.Handles|6.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|6.0.0.0\",\"System.Runtime.InteropServices|6.0.0.0\",\"System.Runtime.Intrinsics|6.0.0.0\",\"System.Runtime.Loader|6.0.0.0\",\"System.Runtime.Numerics|6.0.0.0\",\"System.Runtime.Serialization.Formatters|6.0.0.0\",\"System.Runtime.Serialization.Json|6.0.0.0\",\"System.Runtime.Serialization.Primitives|6.0.0.0\",\"System.Runtime.Serialization.Xml|6.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|6.0.0.0\",\"System.Security.AccessControl|6.0.0.0\",\"System.Security.Claims|6.0.0.0\",\"System.Security.Cryptography.Algorithms|6.0.0.0\",\"System.Security.Cryptography.Cng|6.0.0.0\",\"System.Security.Cryptography.Csp|6.0.0.0\",\"System.Security.Cryptography.Encoding|6.0.0.0\",\"System.Security.Cryptography.OpenSsl|6.0.0.0\",\"System.Security.Cryptography.Primitives|6.0.0.0\",\"System.Security.Cryptography.X509Certificates|6.0.0.0\",\"System.Security.Principal.Windows|6.0.0.0\",\"System.Security.Principal|6.0.0.0\",\"System.Security.SecureString|6.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|6.0.0.0\",\"System.Text.Encoding.Extensions|6.0.0.0\",\"System.Text.Encoding|6.0.0.0\",\"System.Text.Encodings.Web|6.0.0.0\",\"System.Text.Json|6.0.0.0\",\"System.Text.RegularExpressions|6.0.0.0\",\"System.Threading.Channels|6.0.0.0\",\"System.Threading.Overlapped|6.0.0.0\",\"System.Threading.Tasks.Dataflow|6.0.0.0\",\"System.Threading.Tasks.Extensions|6.0.0.0\",\"System.Threading.Tasks.Parallel|6.0.0.0\",\"System.Threading.Tasks|6.0.0.0\",\"System.Threading.Thread|6.0.0.0\",\"System.Threading.ThreadPool|6.0.0.0\",\"System.Threading.Timer|6.0.0.0\",\"System.Threading|6.0.0.0\",\"System.Transactions.Local|6.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|6.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|6.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|6.0.0.0\",\"System.Xml.XPath.XDocument|6.0.0.0\",\"System.Xml.XPath|6.0.0.0\",\"System.Xml.XmlDocument|6.0.0.0\",\"System.Xml.XmlSerializer|6.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v6.0.28\",\"sha512\":\"sha512-mmtX/MfjTfwzU5Gd57m27azyB+29cdykscYNmtEhUZDn97DvRIgXRwha4PjLSwjFdnagLAd/87rbg/DGDzI78w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|7.0.0.0\",\"Microsoft.VisualBasic.Core|12.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|7.0.0.0\",\"Microsoft.Win32.Registry|7.0.0.0\",\"System.AppContext|7.0.0.0\",\"System.Buffers|7.0.0.0\",\"System.Collections.Concurrent|7.0.0.0\",\"System.Collections.Immutable|7.0.0.0\",\"System.Collections.NonGeneric|7.0.0.0\",\"System.Collections.Specialized|7.0.0.0\",\"System.Collections|7.0.0.0\",\"System.ComponentModel.Annotations|7.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|7.0.0.0\",\"System.ComponentModel.Primitives|7.0.0.0\",\"System.ComponentModel.TypeConverter|7.0.0.0\",\"System.ComponentModel|7.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|7.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|7.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|7.0.0.0\",\"System.Diagnostics.Debug|7.0.0.0\",\"System.Diagnostics.DiagnosticSource|7.0.0.0\",\"System.Diagnostics.FileVersionInfo|7.0.0.0\",\"System.Diagnostics.Process|7.0.0.0\",\"System.Diagnostics.StackTrace|7.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|7.0.0.0\",\"System.Diagnostics.Tools|7.0.0.0\",\"System.Diagnostics.TraceSource|7.0.0.0\",\"System.Diagnostics.Tracing|7.0.0.0\",\"System.Drawing.Primitives|7.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|7.0.0.0\",\"System.Formats.Asn1|7.0.0.0\",\"System.Formats.Tar|7.0.0.0\",\"System.Globalization.Calendars|7.0.0.0\",\"System.Globalization.Extensions|7.0.0.0\",\"System.Globalization|7.0.0.0\",\"System.IO.Compression.Brotli|7.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|7.0.0.0\",\"System.IO.Compression|7.0.0.0\",\"System.IO.FileSystem.AccessControl|7.0.0.0\",\"System.IO.FileSystem.DriveInfo|7.0.0.0\",\"System.IO.FileSystem.Primitives|7.0.0.0\",\"System.IO.FileSystem.Watcher|7.0.0.0\",\"System.IO.FileSystem|7.0.0.0\",\"System.IO.IsolatedStorage|7.0.0.0\",\"System.IO.MemoryMappedFiles|7.0.0.0\",\"System.IO.Pipes.AccessControl|7.0.0.0\",\"System.IO.Pipes|7.0.0.0\",\"System.IO.UnmanagedMemoryStream|7.0.0.0\",\"System.IO|7.0.0.0\",\"System.Linq.Expressions|7.0.0.0\",\"System.Linq.Parallel|7.0.0.0\",\"System.Linq.Queryable|7.0.0.0\",\"System.Linq|7.0.0.0\",\"System.Memory|7.0.0.0\",\"System.Net.Http.Json|7.0.0.0\",\"System.Net.Http|7.0.0.0\",\"System.Net.HttpListener|7.0.0.0\",\"System.Net.Mail|7.0.0.0\",\"System.Net.NameResolution|7.0.0.0\",\"System.Net.NetworkInformation|7.0.0.0\",\"System.Net.Ping|7.0.0.0\",\"System.Net.Primitives|7.0.0.0\",\"System.Net.Quic|7.0.0.0\",\"System.Net.Requests|7.0.0.0\",\"System.Net.Security|7.0.0.0\",\"System.Net.ServicePoint|7.0.0.0\",\"System.Net.Sockets|7.0.0.0\",\"System.Net.WebClient|7.0.0.0\",\"System.Net.WebHeaderCollection|7.0.0.0\",\"System.Net.WebProxy|7.0.0.0\",\"System.Net.WebSockets.Client|7.0.0.0\",\"System.Net.WebSockets|7.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|7.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|7.0.0.0\",\"System.Reflection.DispatchProxy|7.0.0.0\",\"System.Reflection.Emit.ILGeneration|7.0.0.0\",\"System.Reflection.Emit.Lightweight|7.0.0.0\",\"System.Reflection.Emit|7.0.0.0\",\"System.Reflection.Extensions|7.0.0.0\",\"System.Reflection.Metadata|7.0.0.0\",\"System.Reflection.Primitives|7.0.0.0\",\"System.Reflection.TypeExtensions|7.0.0.0\",\"System.Reflection|7.0.0.0\",\"System.Resources.Reader|7.0.0.0\",\"System.Resources.ResourceManager|7.0.0.0\",\"System.Resources.Writer|7.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|7.0.0.0\",\"System.Runtime.CompilerServices.VisualC|7.0.0.0\",\"System.Runtime.Extensions|7.0.0.0\",\"System.Runtime.Handles|7.0.0.0\",\"System.Runtime.InteropServices.JavaScript|7.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|7.0.0.0\",\"System.Runtime.InteropServices|7.0.0.0\",\"System.Runtime.Intrinsics|7.0.0.0\",\"System.Runtime.Loader|7.0.0.0\",\"System.Runtime.Numerics|7.0.0.0\",\"System.Runtime.Serialization.Formatters|7.0.0.0\",\"System.Runtime.Serialization.Json|7.0.0.0\",\"System.Runtime.Serialization.Primitives|7.0.0.0\",\"System.Runtime.Serialization.Xml|7.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|7.0.0.0\",\"System.Security.AccessControl|7.0.0.0\",\"System.Security.Claims|7.0.0.0\",\"System.Security.Cryptography.Algorithms|7.0.0.0\",\"System.Security.Cryptography.Cng|7.0.0.0\",\"System.Security.Cryptography.Csp|7.0.0.0\",\"System.Security.Cryptography.Encoding|7.0.0.0\",\"System.Security.Cryptography.OpenSsl|7.0.0.0\",\"System.Security.Cryptography.Primitives|7.0.0.0\",\"System.Security.Cryptography.X509Certificates|7.0.0.0\",\"System.Security.Cryptography|7.0.0.0\",\"System.Security.Principal.Windows|7.0.0.0\",\"System.Security.Principal|7.0.0.0\",\"System.Security.SecureString|7.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|7.0.0.0\",\"System.Text.Encoding.Extensions|7.0.0.0\",\"System.Text.Encoding|7.0.0.0\",\"System.Text.Encodings.Web|7.0.0.0\",\"System.Text.Json|7.0.0.0\",\"System.Text.RegularExpressions|7.0.0.0\",\"System.Threading.Channels|7.0.0.0\",\"System.Threading.Overlapped|7.0.0.0\",\"System.Threading.Tasks.Dataflow|7.0.0.0\",\"System.Threading.Tasks.Extensions|7.0.0.0\",\"System.Threading.Tasks.Parallel|7.0.0.0\",\"System.Threading.Tasks|7.0.0.0\",\"System.Threading.Thread|7.0.0.0\",\"System.Threading.ThreadPool|7.0.0.0\",\"System.Threading.Timer|7.0.0.0\",\"System.Threading|7.0.0.0\",\"System.Transactions.Local|7.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|7.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|7.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|7.0.0.0\",\"System.Xml.XPath.XDocument|7.0.0.0\",\"System.Xml.XPath|7.0.0.0\",\"System.Xml.XmlDocument|7.0.0.0\",\"System.Xml.XmlSerializer|7.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v7.0.17\",\"sha512\":\"sha512-sPK4r+HvhStfHd/eBJL9MPcjewU41RFCbPIEFau4kknDO7ayLcLw/rhgQeGkKdXQiYWm8smqeMPHP8SsCZj9RQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|8.0.0.0\",\"Microsoft.VisualBasic.Core|13.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|8.0.0.0\",\"Microsoft.Win32.Registry|8.0.0.0\",\"System.AppContext|8.0.0.0\",\"System.Buffers|8.0.0.0\",\"System.Collections.Concurrent|8.0.0.0\",\"System.Collections.Immutable|8.0.0.0\",\"System.Collections.NonGeneric|8.0.0.0\",\"System.Collections.Specialized|8.0.0.0\",\"System.Collections|8.0.0.0\",\"System.ComponentModel.Annotations|8.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|8.0.0.0\",\"System.ComponentModel.Primitives|8.0.0.0\",\"System.ComponentModel.TypeConverter|8.0.0.0\",\"System.ComponentModel|8.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|8.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|8.0.0.0\",\"System.Data.DataSetExtensions|8.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|8.0.0.0\",\"System.Diagnostics.Debug|8.0.0.0\",\"System.Diagnostics.DiagnosticSource|8.0.0.0\",\"System.Diagnostics.FileVersionInfo|8.0.0.0\",\"System.Diagnostics.Process|8.0.0.0\",\"System.Diagnostics.StackTrace|8.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|8.0.0.0\",\"System.Diagnostics.Tools|8.0.0.0\",\"System.Diagnostics.TraceSource|8.0.0.0\",\"System.Diagnostics.Tracing|8.0.0.0\",\"System.Drawing.Primitives|8.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|8.0.0.0\",\"System.Formats.Asn1|8.0.0.0\",\"System.Formats.Tar|8.0.0.0\",\"System.Globalization.Calendars|8.0.0.0\",\"System.Globalization.Extensions|8.0.0.0\",\"System.Globalization|8.0.0.0\",\"System.IO.Compression.Brotli|8.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|8.0.0.0\",\"System.IO.Compression|8.0.0.0\",\"System.IO.FileSystem.AccessControl|8.0.0.0\",\"System.IO.FileSystem.DriveInfo|8.0.0.0\",\"System.IO.FileSystem.Primitives|8.0.0.0\",\"System.IO.FileSystem.Watcher|8.0.0.0\",\"System.IO.FileSystem|8.0.0.0\",\"System.IO.IsolatedStorage|8.0.0.0\",\"System.IO.MemoryMappedFiles|8.0.0.0\",\"System.IO.Pipes.AccessControl|8.0.0.0\",\"System.IO.Pipes|8.0.0.0\",\"System.IO.UnmanagedMemoryStream|8.0.0.0\",\"System.IO|8.0.0.0\",\"System.Linq.Expressions|8.0.0.0\",\"System.Linq.Parallel|8.0.0.0\",\"System.Linq.Queryable|8.0.0.0\",\"System.Linq|8.0.0.0\",\"System.Memory|8.0.0.0\",\"System.Net.Http.Json|8.0.0.0\",\"System.Net.Http|8.0.0.0\",\"System.Net.HttpListener|8.0.0.0\",\"System.Net.Mail|8.0.0.0\",\"System.Net.NameResolution|8.0.0.0\",\"System.Net.NetworkInformation|8.0.0.0\",\"System.Net.Ping|8.0.0.0\",\"System.Net.Primitives|8.0.0.0\",\"System.Net.Quic|8.0.0.0\",\"System.Net.Requests|8.0.0.0\",\"System.Net.Security|8.0.0.0\",\"System.Net.ServicePoint|8.0.0.0\",\"System.Net.Sockets|8.0.0.0\",\"System.Net.WebClient|8.0.0.0\",\"System.Net.WebHeaderCollection|8.0.0.0\",\"System.Net.WebProxy|8.0.0.0\",\"System.Net.WebSockets.Client|8.0.0.0\",\"System.Net.WebSockets|8.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|8.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|8.0.0.0\",\"System.Reflection.DispatchProxy|8.0.0.0\",\"System.Reflection.Emit.ILGeneration|8.0.0.0\",\"System.Reflection.Emit.Lightweight|8.0.0.0\",\"System.Reflection.Emit|8.0.0.0\",\"System.Reflection.Extensions|8.0.0.0\",\"System.Reflection.Metadata|8.0.0.0\",\"System.Reflection.Primitives|8.0.0.0\",\"System.Reflection.TypeExtensions|8.0.0.0\",\"System.Reflection|8.0.0.0\",\"System.Resources.Reader|8.0.0.0\",\"System.Resources.ResourceManager|8.0.0.0\",\"System.Resources.Writer|8.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|8.0.0.0\",\"System.Runtime.CompilerServices.VisualC|8.0.0.0\",\"System.Runtime.Extensions|8.0.0.0\",\"System.Runtime.Handles|8.0.0.0\",\"System.Runtime.InteropServices.JavaScript|8.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|8.0.0.0\",\"System.Runtime.InteropServices|8.0.0.0\",\"System.Runtime.Intrinsics|8.0.0.0\",\"System.Runtime.Loader|8.0.0.0\",\"System.Runtime.Numerics|8.0.0.0\",\"System.Runtime.Serialization.Formatters|8.0.0.0\",\"System.Runtime.Serialization.Json|8.0.0.0\",\"System.Runtime.Serialization.Primitives|8.0.0.0\",\"System.Runtime.Serialization.Xml|8.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|8.0.0.0\",\"System.Security.AccessControl|8.0.0.0\",\"System.Security.Claims|8.0.0.0\",\"System.Security.Cryptography.Algorithms|8.0.0.0\",\"System.Security.Cryptography.Cng|8.0.0.0\",\"System.Security.Cryptography.Csp|8.0.0.0\",\"System.Security.Cryptography.Encoding|8.0.0.0\",\"System.Security.Cryptography.OpenSsl|8.0.0.0\",\"System.Security.Cryptography.Primitives|8.0.0.0\",\"System.Security.Cryptography.X509Certificates|8.0.0.0\",\"System.Security.Cryptography|8.0.0.0\",\"System.Security.Principal.Windows|8.0.0.0\",\"System.Security.Principal|8.0.0.0\",\"System.Security.SecureString|8.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|8.0.0.0\",\"System.Text.Encoding.Extensions|8.0.0.0\",\"System.Text.Encoding|8.0.0.0\",\"System.Text.Encodings.Web|8.0.0.0\",\"System.Text.Json|8.0.0.0\",\"System.Text.RegularExpressions|8.0.0.0\",\"System.Threading.Channels|8.0.0.0\",\"System.Threading.Overlapped|8.0.0.0\",\"System.Threading.Tasks.Dataflow|8.0.0.0\",\"System.Threading.Tasks.Extensions|8.0.0.0\",\"System.Threading.Tasks.Parallel|8.0.0.0\",\"System.Threading.Tasks|8.0.0.0\",\"System.Threading.Thread|8.0.0.0\",\"System.Threading.ThreadPool|8.0.0.0\",\"System.Threading.Timer|8.0.0.0\",\"System.Threading|8.0.0.0\",\"System.Transactions.Local|8.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|8.0.0.0\",\"System.Web.HttpUtility|8.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|8.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|8.0.0.0\",\"System.Xml.XPath.XDocument|8.0.0.0\",\"System.Xml.XPath|8.0.0.0\",\"System.Xml.XmlDocument|8.0.0.0\",\"System.Xml.XmlSerializer|8.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v8.0.3\",\"sha512\":\"sha512-AMA998IeSADApTbNIKNoHz+RI4pseVFASpkibhnjildJ3ACPyTyji/mnDAQXPCpvQfP83F6/yeYuAI+aYoSOgQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"8.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App\",\"name\":\"microsoft.aspnetcore.app.v2.1.34\",\"sha512\":\"sha512-SIOjTfqVrxUu6Ov6YTO2Szq4qZ/FWjX0O4pFPz+bV6BVC5PJCEfkSrGE26rxuGENVMCuU6nNehDrpa/7rqhk6Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.1.34\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App\",\"name\":\"microsoft.aspnetcore.app.v2.2.8\",\"sha512\":\"sha512-tN5tV4OSYlw2Rw2AJVV2K2irF6ijReRgm0sQMuwVyR1+D8d6rgiZggGs/6QCut9mo8xtcH12g9RJmbpQwDJbnA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.2.8\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.0.0.0\",\"Microsoft.AspNetCore.Authentication|3.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.0.0.0\",\"Microsoft.AspNetCore.Authorization|3.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.0.0.0\",\"Microsoft.AspNetCore.Components.Server|3.0.0.0\",\"Microsoft.AspNetCore.Components.Web|3.0.0.0\",\"Microsoft.AspNetCore.Components|3.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.0.0.0\",\"Microsoft.AspNetCore.Cors|3.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Hosting|3.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Features|3.0.0.0\",\"Microsoft.AspNetCore.Http|3.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.0.0.0\",\"Microsoft.AspNetCore.Identity|3.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.0.0.0\",\"Microsoft.AspNetCore.Localization|3.0.0.0\",\"Microsoft.AspNetCore.Metadata|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0.0\",\"Microsoft.AspNetCore.Mvc|3.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.0.0.0\",\"Microsoft.AspNetCore.Razor|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.0.0.0\",\"Microsoft.AspNetCore.Rewrite|3.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Routing|3.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.0.0.0\",\"Microsoft.AspNetCore.Session|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0.0\",\"Microsoft.AspNetCore.SignalR|3.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.0.0.0\",\"Microsoft.AspNetCore.WebSockets|3.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.0.0.0\",\"Microsoft.AspNetCore|3.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Caching.Memory|3.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.0.0.0\",\"Microsoft.Extensions.Configuration.Json|3.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.0.0.0\",\"Microsoft.Extensions.Configuration|3.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0.0\",\"Microsoft.Extensions.DependencyInjection|3.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Hosting|3.0.0.0\",\"Microsoft.Extensions.Http|3.0.0.0\",\"Microsoft.Extensions.Identity.Core|3.0.0.0\",\"Microsoft.Extensions.Identity.Stores|3.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Localization|3.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.0.0.0\",\"Microsoft.Extensions.Logging.Console|3.0.0.0\",\"Microsoft.Extensions.Logging.Debug|3.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.0.0.0\",\"Microsoft.Extensions.Logging|3.0.0.0\",\"Microsoft.Extensions.ObjectPool|3.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.0.0.0\",\"Microsoft.Extensions.Options|3.0.0.0\",\"Microsoft.Extensions.Primitives|3.0.0.0\",\"Microsoft.Extensions.WebEncoders|3.0.0.0\",\"Microsoft.JSInterop|3.0.0.0\",\"Microsoft.Net.Http.Headers|3.0.0.0\",\"Microsoft.Win32.Registry|4.1.2.0\",\"System.Diagnostics.EventLog|4.0.1.0\",\"System.IO.Pipelines|4.0.1.0\",\"System.Security.AccessControl|4.1.1.0\",\"System.Security.Cryptography.Cng|4.3.2.0\",\"System.Security.Cryptography.Xml|4.0.2.0\",\"System.Security.Permissions|4.0.2.0\",\"System.Security.Principal.Windows|4.1.1.0\",\"System.Windows.Extensions|4.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v3.0.1\",\"sha512\":\"sha512-WlsoQyUrygTLB389vvp/ORtgQlVq8l2fhFxA9kQ9L2QiMqNgVqycOUZkauc26Knf2uJ34XtrDj2q6zM8lNnRwQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|4.6.0\",\"System.Diagnostics.EventLog|4.6.0\",\"System.IO.Pipelines|4.6.0\",\"System.Security.AccessControl|4.6.0\",\"System.Security.Cryptography.Cng|4.6.0\",\"System.Security.Cryptography.Xml|4.6.0\",\"System.Security.Permissions|4.6.0\",\"System.Security.Principal.Windows|4.6.0\",\"System.Windows.Extensions|4.6.0\",\"Microsoft.Extensions.Caching.Abstractions|3.0.0\",\"Microsoft.Extensions.Caching.Memory|3.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.0.0\",\"Microsoft.Extensions.Configuration|3.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.0.0\",\"Microsoft.Extensions.Configuration.Json|3.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0\",\"Microsoft.Extensions.DependencyInjection|3.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.0.0\",\"Microsoft.Extensions.Hosting|3.0.0\",\"Microsoft.Extensions.Http|3.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.0.0\",\"Microsoft.Extensions.Localization|3.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.0.0\",\"Microsoft.Extensions.Logging.Console|3.0.0\",\"Microsoft.Extensions.Logging.Debug|3.0.0\",\"Microsoft.Extensions.Logging|3.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.0.0\",\"Microsoft.Extensions.ObjectPool|3.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.0.0\",\"Microsoft.Extensions.Options|3.0.0\",\"Microsoft.Extensions.Primitives|3.0.0\",\"Microsoft.Extensions.WebEncoders|3.0.0\",\"Microsoft.JSInterop|3.0.0\",\"Microsoft.AspNetCore.Antiforgery|3.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.0.0\",\"Microsoft.AspNetCore.Authentication|3.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.0.0\",\"Microsoft.AspNetCore.Authorization|3.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.0.0\",\"Microsoft.AspNetCore.Components|3.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.0.0\",\"Microsoft.AspNetCore.Components.Server|3.0.0\",\"Microsoft.AspNetCore.Components.Web|3.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.0.0\",\"Microsoft.AspNetCore.Cors|3.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0\",\"Microsoft.AspNetCore.DataProtection|3.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0\",\"Microsoft.AspNetCore|3.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Hosting|3.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.0.0\",\"Microsoft.AspNetCore.Http|3.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.0.0\",\"Microsoft.AspNetCore.Http.Features|3.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.0.0\",\"Microsoft.AspNetCore.Identity|3.0.0\",\"Microsoft.AspNetCore.Localization|3.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.0.0\",\"Microsoft.AspNetCore.Metadata|3.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0\",\"Microsoft.AspNetCore.Mvc|3.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0\",\"Microsoft.AspNetCore.Razor|3.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.0.0\",\"Microsoft.AspNetCore.Rewrite|3.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Routing|3.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0\",\"Microsoft.AspNetCore.Session|3.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.0.0\",\"Microsoft.AspNetCore.SignalR|3.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.0.0\",\"Microsoft.AspNetCore.WebSockets|3.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.0.0\",\"Microsoft.Extensions.Identity.Core|3.0.0\",\"Microsoft.Extensions.Identity.Stores|3.0.0\",\"Microsoft.Net.Http.Headers|3.0.0\"],\"version\":\"3.0.1\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.1.0.0\",\"Microsoft.AspNetCore.Authentication|3.1.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.1.0.0\",\"Microsoft.AspNetCore.Authorization|3.1.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.1.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.1.0.0\",\"Microsoft.AspNetCore.Components.Server|3.1.0.0\",\"Microsoft.AspNetCore.Components.Web|3.1.0.0\",\"Microsoft.AspNetCore.Components|3.1.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.1.0.0\",\"Microsoft.AspNetCore.Cors|3.1.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.1.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.1.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.1.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Hosting|3.1.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.1.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.1.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Features|3.1.0.0\",\"Microsoft.AspNetCore.Http|3.1.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.1.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.1.0.0\",\"Microsoft.AspNetCore.Identity|3.1.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.1.0.0\",\"Microsoft.AspNetCore.Localization|3.1.0.0\",\"Microsoft.AspNetCore.Metadata|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0.0\",\"Microsoft.AspNetCore.Mvc|3.1.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.1.0.0\",\"Microsoft.AspNetCore.Razor|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.1.0.0\",\"Microsoft.AspNetCore.Rewrite|3.1.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Routing|3.1.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.1.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.1.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.1.0.0\",\"Microsoft.AspNetCore.Session|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0.0\",\"Microsoft.AspNetCore.SignalR|3.1.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.1.0.0\",\"Microsoft.AspNetCore.WebSockets|3.1.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.1.0.0\",\"Microsoft.AspNetCore|3.1.0.0\",\"Microsoft.Extensions.Caching.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Caching.Memory|3.1.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.1.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.1.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.1.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.1.0.0\",\"Microsoft.Extensions.Configuration.Json|3.1.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.1.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.1.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.1.0.0\",\"Microsoft.Extensions.Configuration|3.1.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0.0\",\"Microsoft.Extensions.DependencyInjection|3.1.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.1.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.1.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Hosting|3.1.0.0\",\"Microsoft.Extensions.Http|3.1.0.0\",\"Microsoft.Extensions.Identity.Core|3.1.0.0\",\"Microsoft.Extensions.Identity.Stores|3.1.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Localization|3.1.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.1.0.0\",\"Microsoft.Extensions.Logging.Console|3.1.0.0\",\"Microsoft.Extensions.Logging.Debug|3.1.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.1.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.1.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.1.0.0\",\"Microsoft.Extensions.Logging|3.1.0.0\",\"Microsoft.Extensions.ObjectPool|3.1.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.1.0.0\",\"Microsoft.Extensions.Options|3.1.0.0\",\"Microsoft.Extensions.Primitives|3.1.0.0\",\"Microsoft.Extensions.WebEncoders|3.1.0.0\",\"Microsoft.JSInterop|3.1.0.0\",\"Microsoft.Net.Http.Headers|3.1.0.0\",\"Microsoft.Win32.Registry|4.1.3.0\",\"System.Diagnostics.EventLog|4.0.2.0\",\"System.IO.Pipelines|4.0.2.0\",\"System.Security.AccessControl|4.1.1.0\",\"System.Security.Cryptography.Cng|4.3.3.0\",\"System.Security.Cryptography.Xml|4.0.3.0\",\"System.Security.Permissions|4.0.3.0\",\"System.Security.Principal.Windows|4.1.1.0\",\"System.Windows.Extensions|4.0.1.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v3.1.10\",\"sha512\":\"sha512-yojrAwINItqiOp1XYc50AakRLEnJTOLSgCHdWMECI09NB+25i2eL/gaVcGfC/1986bsGGa/Afd85tcpFsuUnSQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|4.7.0\",\"System.Diagnostics.EventLog|4.7.0\",\"System.IO.Pipelines|4.7.0\",\"System.Security.AccessControl|4.7.0\",\"System.Security.Cryptography.Cng|4.7.0\",\"System.Security.Cryptography.Xml|4.7.0\",\"System.Security.Permissions|4.7.0\",\"System.Security.Principal.Windows|4.7.0\",\"System.Windows.Extensions|4.7.0\",\"Microsoft.Extensions.Caching.Abstractions|3.1.0\",\"Microsoft.Extensions.Caching.Memory|3.1.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.1.0\",\"Microsoft.Extensions.Configuration.Binder|3.1.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.1.0\",\"Microsoft.Extensions.Configuration|3.1.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.1.0\",\"Microsoft.Extensions.Configuration.Ini|3.1.0\",\"Microsoft.Extensions.Configuration.Json|3.1.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.1.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.1.0\",\"Microsoft.Extensions.Configuration.Xml|3.1.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0\",\"Microsoft.Extensions.DependencyInjection|3.1.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.1.0\",\"Microsoft.Extensions.FileProviders.Composite|3.1.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.1.0\",\"Microsoft.Extensions.FileProviders.Physical|3.1.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.1.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.1.0\",\"Microsoft.Extensions.Hosting|3.1.0\",\"Microsoft.Extensions.Http|3.1.0\",\"Microsoft.Extensions.Localization.Abstractions|3.1.0\",\"Microsoft.Extensions.Localization|3.1.0\",\"Microsoft.Extensions.Logging.Abstractions|3.1.0\",\"Microsoft.Extensions.Logging.Configuration|3.1.0\",\"Microsoft.Extensions.Logging.Console|3.1.0\",\"Microsoft.Extensions.Logging.Debug|3.1.0\",\"Microsoft.Extensions.Logging|3.1.0\",\"Microsoft.Extensions.Logging.EventLog|3.1.0\",\"Microsoft.Extensions.Logging.EventSource|3.1.0\",\"Microsoft.Extensions.Logging.TraceSource|3.1.0\",\"Microsoft.Extensions.ObjectPool|3.1.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.1.0\",\"Microsoft.Extensions.Options|3.1.0\",\"Microsoft.Extensions.Primitives|3.1.0\",\"Microsoft.Extensions.WebEncoders|3.1.0\",\"Microsoft.JSInterop|3.1.0\",\"Microsoft.AspNetCore.Antiforgery|3.1.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.1.0\",\"Microsoft.AspNetCore.Authentication.Core|3.1.0\",\"Microsoft.AspNetCore.Authentication|3.1.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.1.0\",\"Microsoft.AspNetCore.Authorization|3.1.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.1.0\",\"Microsoft.AspNetCore.Components.Authorization|3.1.0\",\"Microsoft.AspNetCore.Components|3.1.0\",\"Microsoft.AspNetCore.Components.Forms|3.1.0\",\"Microsoft.AspNetCore.Components.Server|3.1.0\",\"Microsoft.AspNetCore.Components.Web|3.1.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.1.0\",\"Microsoft.AspNetCore.CookiePolicy|3.1.0\",\"Microsoft.AspNetCore.Cors|3.1.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.1.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0\",\"Microsoft.AspNetCore.DataProtection|3.1.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.1.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Diagnostics|3.1.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0\",\"Microsoft.AspNetCore|3.1.0\",\"Microsoft.AspNetCore.HostFiltering|3.1.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Hosting|3.1.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.1.0\",\"Microsoft.AspNetCore.Http.Connections|3.1.0\",\"Microsoft.AspNetCore.Http|3.1.0\",\"Microsoft.AspNetCore.Http.Extensions|3.1.0\",\"Microsoft.AspNetCore.Http.Features|3.1.0\",\"Microsoft.AspNetCore.HttpOverrides|3.1.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.1.0\",\"Microsoft.AspNetCore.Identity|3.1.0\",\"Microsoft.AspNetCore.Localization|3.1.0\",\"Microsoft.AspNetCore.Localization.Routing|3.1.0\",\"Microsoft.AspNetCore.Metadata|3.1.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0\",\"Microsoft.AspNetCore.Mvc.Core|3.1.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.1.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0\",\"Microsoft.AspNetCore.Mvc|3.1.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.1.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.1.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.1.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0\",\"Microsoft.AspNetCore.Razor|3.1.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.1.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0\",\"Microsoft.AspNetCore.ResponseCaching|3.1.0\",\"Microsoft.AspNetCore.ResponseCompression|3.1.0\",\"Microsoft.AspNetCore.Rewrite|3.1.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Routing|3.1.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.1.0\",\"Microsoft.AspNetCore.Server.IIS|3.1.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0\",\"Microsoft.AspNetCore.Session|3.1.0\",\"Microsoft.AspNetCore.SignalR.Common|3.1.0\",\"Microsoft.AspNetCore.SignalR.Core|3.1.0\",\"Microsoft.AspNetCore.SignalR|3.1.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0\",\"Microsoft.AspNetCore.StaticFiles|3.1.0\",\"Microsoft.AspNetCore.WebSockets|3.1.0\",\"Microsoft.AspNetCore.WebUtilities|3.1.0\",\"Microsoft.Extensions.Identity.Core|3.1.0\",\"Microsoft.Extensions.Identity.Stores|3.1.0\",\"Microsoft.Net.Http.Headers|3.1.0\"],\"version\":\"3.1.10\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|5.0.0.0\",\"Microsoft.AspNetCore.Authentication|5.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|5.0.0.0\",\"Microsoft.AspNetCore.Authorization|5.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|5.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|5.0.0.0\",\"Microsoft.AspNetCore.Components.Server|5.0.0.0\",\"Microsoft.AspNetCore.Components.Web|5.0.0.0\",\"Microsoft.AspNetCore.Components|5.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|5.0.0.0\",\"Microsoft.AspNetCore.Cors|5.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|5.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|5.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|5.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Hosting|5.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|5.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|5.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Features|5.0.0.0\",\"Microsoft.AspNetCore.Http|5.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|5.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|5.0.0.0\",\"Microsoft.AspNetCore.Identity|5.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|5.0.0.0\",\"Microsoft.AspNetCore.Localization|5.0.0.0\",\"Microsoft.AspNetCore.Metadata|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0.0\",\"Microsoft.AspNetCore.Mvc|5.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|5.0.0.0\",\"Microsoft.AspNetCore.Razor|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|5.0.0.0\",\"Microsoft.AspNetCore.Rewrite|5.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Routing|5.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|5.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|5.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|5.0.0.0\",\"Microsoft.AspNetCore.Session|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0.0\",\"Microsoft.AspNetCore.SignalR|5.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|5.0.0.0\",\"Microsoft.AspNetCore.WebSockets|5.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|5.0.0.0\",\"Microsoft.AspNetCore|5.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Caching.Memory|5.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|5.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|5.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|5.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|5.0.0.0\",\"Microsoft.Extensions.Configuration.Json|5.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|5.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|5.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|5.0.0.0\",\"Microsoft.Extensions.Configuration|5.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0.0\",\"Microsoft.Extensions.DependencyInjection|5.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|5.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|5.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Hosting|5.0.0.0\",\"Microsoft.Extensions.Http|5.0.0.0\",\"Microsoft.Extensions.Identity.Core|5.0.0.0\",\"Microsoft.Extensions.Identity.Stores|5.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Localization|5.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|5.0.0.0\",\"Microsoft.Extensions.Logging.Console|5.0.0.0\",\"Microsoft.Extensions.Logging.Debug|5.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|5.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|5.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|5.0.0.0\",\"Microsoft.Extensions.Logging|5.0.0.0\",\"Microsoft.Extensions.ObjectPool|5.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|5.0.0.0\",\"Microsoft.Extensions.Options|5.0.0.0\",\"Microsoft.Extensions.Primitives|5.0.0.0\",\"Microsoft.Extensions.WebEncoders|5.0.0.0\",\"Microsoft.JSInterop|5.0.0.0\",\"Microsoft.Net.Http.Headers|5.0.0.0\",\"Microsoft.Win32.Registry|5.0.0.0\",\"System.Diagnostics.EventLog|5.0.0.0\",\"System.IO.Pipelines|5.0.0.0\",\"System.Security.AccessControl|5.0.0.0\",\"System.Security.Cryptography.Cng|5.0.0.0\",\"System.Security.Cryptography.Xml|5.0.0.0\",\"System.Security.Permissions|5.0.0.0\",\"System.Security.Principal.Windows|5.0.0.0\",\"System.Windows.Extensions|5.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v5.0.0\",\"sha512\":\"sha512-WUXyfm24FMcGI+nADe0wJqBnQcGmtqrjhbJN+W2M9RZOc4TtUJDmmvpQabHwRWYQNoLjTJn/825gs5UKksOMog==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|5.0.0\",\"System.Diagnostics.EventLog|5.0.0\",\"System.IO.Pipelines|5.0.0\",\"System.Security.AccessControl|5.0.0\",\"System.Security.Cryptography.Cng|5.0.0\",\"System.Security.Cryptography.Xml|5.0.0\",\"System.Security.Permissions|5.0.0\",\"System.Security.Principal.Windows|5.0.0\",\"System.Windows.Extensions|5.0.0\",\"Microsoft.Extensions.Caching.Abstractions|5.0.0\",\"Microsoft.Extensions.Caching.Memory|5.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|5.0.0\",\"Microsoft.Extensions.Configuration.Binder|5.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|5.0.0\",\"Microsoft.Extensions.Configuration|5.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|5.0.0\",\"Microsoft.Extensions.Configuration.Ini|5.0.0\",\"Microsoft.Extensions.Configuration.Json|5.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|5.0.0\",\"Microsoft.Extensions.Configuration.Xml|5.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0\",\"Microsoft.Extensions.DependencyInjection|5.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|5.0.0\",\"Microsoft.Extensions.FileProviders.Composite|5.0.0\",\"Microsoft.Extensions.FileProviders.Physical|5.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|5.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|5.0.0\",\"Microsoft.Extensions.Hosting|5.0.0\",\"Microsoft.Extensions.Http|5.0.0\",\"Microsoft.Extensions.Logging.Abstractions|5.0.0\",\"Microsoft.Extensions.Logging.Configuration|5.0.0\",\"Microsoft.Extensions.Logging.Console|5.0.0\",\"Microsoft.Extensions.Logging.Debug|5.0.0\",\"Microsoft.Extensions.Logging|5.0.0\",\"Microsoft.Extensions.Logging.EventLog|5.0.0\",\"Microsoft.Extensions.Logging.EventSource|5.0.0\",\"Microsoft.Extensions.Logging.TraceSource|5.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|5.0.0\",\"Microsoft.Extensions.Options|5.0.0\",\"Microsoft.Extensions.Primitives|5.0.0\",\"Microsoft.AspNetCore.Antiforgery|5.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|5.0.0\",\"Microsoft.AspNetCore.Authentication.Core|5.0.0\",\"Microsoft.AspNetCore.Authentication|5.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|5.0.0\",\"Microsoft.AspNetCore.Authorization|5.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|5.0.0\",\"Microsoft.AspNetCore.Components.Authorization|5.0.0\",\"Microsoft.AspNetCore.Components|5.0.0\",\"Microsoft.AspNetCore.Components.Forms|5.0.0\",\"Microsoft.AspNetCore.Components.Server|5.0.0\",\"Microsoft.AspNetCore.Components.Web|5.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|5.0.0\",\"Microsoft.AspNetCore.CookiePolicy|5.0.0\",\"Microsoft.AspNetCore.Cors|5.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|5.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0\",\"Microsoft.AspNetCore.DataProtection|5.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|5.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Diagnostics|5.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0\",\"Microsoft.AspNetCore|5.0.0\",\"Microsoft.AspNetCore.HostFiltering|5.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Hosting|5.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|5.0.0\",\"Microsoft.AspNetCore.Http.Connections|5.0.0\",\"Microsoft.AspNetCore.Http|5.0.0\",\"Microsoft.AspNetCore.Http.Extensions|5.0.0\",\"Microsoft.AspNetCore.Http.Features|5.0.0\",\"Microsoft.AspNetCore.HttpOverrides|5.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|5.0.0\",\"Microsoft.AspNetCore.Identity|5.0.0\",\"Microsoft.AspNetCore.Localization|5.0.0\",\"Microsoft.AspNetCore.Localization.Routing|5.0.0\",\"Microsoft.AspNetCore.Metadata|5.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0\",\"Microsoft.AspNetCore.Mvc.Core|5.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|5.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0\",\"Microsoft.AspNetCore.Mvc|5.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|5.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|5.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|5.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0\",\"Microsoft.AspNetCore.Razor|5.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|5.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0\",\"Microsoft.AspNetCore.ResponseCaching|5.0.0\",\"Microsoft.AspNetCore.ResponseCompression|5.0.0\",\"Microsoft.AspNetCore.Rewrite|5.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Routing|5.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|5.0.0\",\"Microsoft.AspNetCore.Server.IIS|5.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0\",\"Microsoft.AspNetCore.Session|5.0.0\",\"Microsoft.AspNetCore.SignalR.Common|5.0.0\",\"Microsoft.AspNetCore.SignalR.Core|5.0.0\",\"Microsoft.AspNetCore.SignalR|5.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0\",\"Microsoft.AspNetCore.StaticFiles|5.0.0\",\"Microsoft.AspNetCore.WebSockets|5.0.0\",\"Microsoft.AspNetCore.WebUtilities|5.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|5.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|5.0.0\",\"Microsoft.Extensions.Identity.Core|5.0.0\",\"Microsoft.Extensions.Identity.Stores|5.0.0\",\"Microsoft.Extensions.Localization.Abstractions|5.0.0\",\"Microsoft.Extensions.Localization|5.0.0\",\"Microsoft.Extensions.ObjectPool|5.0.0\",\"Microsoft.Extensions.WebEncoders|5.0.0\",\"Microsoft.JSInterop|5.0.0\",\"Microsoft.Net.Http.Headers|5.0.0\"],\"version\":\"5.0.0\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|6.0.0.0\",\"Microsoft.AspNetCore.Authentication|6.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|6.0.0.0\",\"Microsoft.AspNetCore.Authorization|6.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|6.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|6.0.0.0\",\"Microsoft.AspNetCore.Components.Server|6.0.0.0\",\"Microsoft.AspNetCore.Components.Web|6.0.0.0\",\"Microsoft.AspNetCore.Components|6.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|6.0.0.0\",\"Microsoft.AspNetCore.Cors|6.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|6.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|6.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|6.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Hosting|6.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|6.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|6.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Features|6.0.0.0\",\"Microsoft.AspNetCore.Http.Results|6.0.0.0\",\"Microsoft.AspNetCore.Http|6.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|6.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|6.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|6.0.0.0\",\"Microsoft.AspNetCore.Identity|6.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|6.0.0.0\",\"Microsoft.AspNetCore.Localization|6.0.0.0\",\"Microsoft.AspNetCore.Metadata|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0.0\",\"Microsoft.AspNetCore.Mvc|6.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|6.0.0.0\",\"Microsoft.AspNetCore.Razor|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|6.0.0.0\",\"Microsoft.AspNetCore.Rewrite|6.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Routing|6.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|6.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|6.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|6.0.0.0\",\"Microsoft.AspNetCore.Session|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0.0\",\"Microsoft.AspNetCore.SignalR|6.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|6.0.0.0\",\"Microsoft.AspNetCore.WebSockets|6.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|6.0.0.0\",\"Microsoft.AspNetCore|6.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Caching.Memory|6.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|6.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|6.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|6.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|6.0.0.0\",\"Microsoft.Extensions.Configuration.Json|6.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|6.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|6.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|6.0.0.0\",\"Microsoft.Extensions.Configuration|6.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0.0\",\"Microsoft.Extensions.DependencyInjection|6.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0.0\",\"Microsoft.Extensions.Features|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|6.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|6.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Hosting|6.0.0.0\",\"Microsoft.Extensions.Http|6.0.0.0\",\"Microsoft.Extensions.Identity.Core|6.0.0.0\",\"Microsoft.Extensions.Identity.Stores|6.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Localization|6.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|6.0.0.0\",\"Microsoft.Extensions.Logging.Console|6.0.0.0\",\"Microsoft.Extensions.Logging.Debug|6.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|6.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|6.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|6.0.0.0\",\"Microsoft.Extensions.Logging|6.0.0.0\",\"Microsoft.Extensions.ObjectPool|6.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|6.0.0.0\",\"Microsoft.Extensions.Options|6.0.0.0\",\"Microsoft.Extensions.Primitives|6.0.0.0\",\"Microsoft.Extensions.WebEncoders|6.0.0.0\",\"Microsoft.JSInterop|6.0.0.0\",\"Microsoft.Net.Http.Headers|6.0.0.0\",\"System.Diagnostics.EventLog|6.0.0.0\",\"System.IO.Pipelines|6.0.0.0\",\"System.Security.Cryptography.Xml|6.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v6.0.28\",\"sha512\":\"sha512-w9TnQpG7AazEtx6qCo6YNpzgzS6sGbTCSCkTnojUFzTGC/pSPnmcZej9ZCJP/BUGfO8kDWisGTmYzlk/OzlGuA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|6.0.0\",\"Microsoft.Extensions.Caching.Memory|6.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|6.0.0\",\"Microsoft.Extensions.Configuration.Binder|6.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|6.0.0\",\"Microsoft.Extensions.Configuration|6.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|6.0.0\",\"Microsoft.Extensions.Configuration.Ini|6.0.0\",\"Microsoft.Extensions.Configuration.Json|6.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|6.0.0\",\"Microsoft.Extensions.Configuration.Xml|6.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0\",\"Microsoft.Extensions.DependencyInjection|6.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|6.0.0\",\"Microsoft.Extensions.FileProviders.Composite|6.0.0\",\"Microsoft.Extensions.FileProviders.Physical|6.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|6.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|6.0.0\",\"Microsoft.Extensions.Hosting|6.0.0\",\"Microsoft.Extensions.Http|6.0.0\",\"Microsoft.Extensions.Logging.Abstractions|6.0.0\",\"Microsoft.Extensions.Logging.Configuration|6.0.0\",\"Microsoft.Extensions.Logging.Console|6.0.0\",\"Microsoft.Extensions.Logging.Debug|6.0.0\",\"Microsoft.Extensions.Logging|6.0.0\",\"Microsoft.Extensions.Logging.EventLog|6.0.0\",\"Microsoft.Extensions.Logging.EventSource|6.0.0\",\"Microsoft.Extensions.Logging.TraceSource|6.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|6.0.0\",\"Microsoft.Extensions.Options|6.0.0\",\"Microsoft.Extensions.Primitives|6.0.0\",\"System.Diagnostics.EventLog|6.0.0\",\"System.IO.Pipelines|6.0.0\",\"System.Security.Cryptography.Xml|6.0.0\",\"Microsoft.AspNetCore.Antiforgery|6.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|6.0.0\",\"Microsoft.AspNetCore.Authentication.Core|6.0.0\",\"Microsoft.AspNetCore.Authentication|6.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|6.0.0\",\"Microsoft.AspNetCore.Authorization|6.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|6.0.0\",\"Microsoft.AspNetCore.Components.Authorization|6.0.0\",\"Microsoft.AspNetCore.Components|6.0.0\",\"Microsoft.AspNetCore.Components.Forms|6.0.0\",\"Microsoft.AspNetCore.Components.Server|6.0.0\",\"Microsoft.AspNetCore.Components.Web|6.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|6.0.0\",\"Microsoft.AspNetCore.CookiePolicy|6.0.0\",\"Microsoft.AspNetCore.Cors|6.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|6.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0\",\"Microsoft.AspNetCore.DataProtection|6.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|6.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Diagnostics|6.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0\",\"Microsoft.AspNetCore|6.0.0\",\"Microsoft.AspNetCore.HostFiltering|6.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Hosting|6.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|6.0.0\",\"Microsoft.AspNetCore.Http.Connections|6.0.0\",\"Microsoft.AspNetCore.Http|6.0.0\",\"Microsoft.AspNetCore.Http.Extensions|6.0.0\",\"Microsoft.AspNetCore.Http.Features|6.0.0\",\"Microsoft.AspNetCore.Http.Results|6.0.0\",\"Microsoft.AspNetCore.HttpLogging|6.0.0\",\"Microsoft.AspNetCore.HttpOverrides|6.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|6.0.0\",\"Microsoft.AspNetCore.Identity|6.0.0\",\"Microsoft.AspNetCore.Localization|6.0.0\",\"Microsoft.AspNetCore.Localization.Routing|6.0.0\",\"Microsoft.AspNetCore.Metadata|6.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0\",\"Microsoft.AspNetCore.Mvc.Core|6.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|6.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0\",\"Microsoft.AspNetCore.Mvc|6.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|6.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|6.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|6.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0\",\"Microsoft.AspNetCore.Razor|6.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|6.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0\",\"Microsoft.AspNetCore.ResponseCaching|6.0.0\",\"Microsoft.AspNetCore.ResponseCompression|6.0.0\",\"Microsoft.AspNetCore.Rewrite|6.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Routing|6.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|6.0.0\",\"Microsoft.AspNetCore.Server.IIS|6.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0\",\"Microsoft.AspNetCore.Session|6.0.0\",\"Microsoft.AspNetCore.SignalR.Common|6.0.0\",\"Microsoft.AspNetCore.SignalR.Core|6.0.0\",\"Microsoft.AspNetCore.SignalR|6.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0\",\"Microsoft.AspNetCore.StaticFiles|6.0.0\",\"Microsoft.AspNetCore.WebSockets|6.0.0\",\"Microsoft.AspNetCore.WebUtilities|6.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|6.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0\",\"Microsoft.Extensions.Features|6.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|6.0.0\",\"Microsoft.Extensions.Identity.Core|6.0.0\",\"Microsoft.Extensions.Identity.Stores|6.0.0\",\"Microsoft.Extensions.Localization.Abstractions|6.0.0\",\"Microsoft.Extensions.Localization|6.0.0\",\"Microsoft.Extensions.ObjectPool|6.0.0\",\"Microsoft.Extensions.WebEncoders|6.0.0\",\"Microsoft.JSInterop|6.0.0\",\"Microsoft.Net.Http.Headers|6.0.0\"],\"version\":\"6.0.28\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|7.0.0.0\",\"Microsoft.AspNetCore.Authentication|7.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|7.0.0.0\",\"Microsoft.AspNetCore.Authorization|7.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|7.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|7.0.0.0\",\"Microsoft.AspNetCore.Components.Server|7.0.0.0\",\"Microsoft.AspNetCore.Components.Web|7.0.0.0\",\"Microsoft.AspNetCore.Components|7.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|7.0.0.0\",\"Microsoft.AspNetCore.Cors|7.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|7.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|7.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|7.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Hosting|7.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|7.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|7.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Features|7.0.0.0\",\"Microsoft.AspNetCore.Http.Results|7.0.0.0\",\"Microsoft.AspNetCore.Http|7.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|7.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|7.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|7.0.0.0\",\"Microsoft.AspNetCore.Identity|7.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|7.0.0.0\",\"Microsoft.AspNetCore.Localization|7.0.0.0\",\"Microsoft.AspNetCore.Metadata|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0.0\",\"Microsoft.AspNetCore.Mvc|7.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|7.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|7.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|7.0.0.0\",\"Microsoft.AspNetCore.Razor|7.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|7.0.0.0\",\"Microsoft.AspNetCore.Rewrite|7.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Routing|7.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|7.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|7.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|7.0.0.0\",\"Microsoft.AspNetCore.Session|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0.0\",\"Microsoft.AspNetCore.SignalR|7.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|7.0.0.0\",\"Microsoft.AspNetCore.WebSockets|7.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|7.0.0.0\",\"Microsoft.AspNetCore|7.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Caching.Memory|7.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|7.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|7.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|7.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|7.0.0.0\",\"Microsoft.Extensions.Configuration.Json|7.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|7.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|7.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|7.0.0.0\",\"Microsoft.Extensions.Configuration|7.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0.0\",\"Microsoft.Extensions.DependencyInjection|7.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0.0\",\"Microsoft.Extensions.Features|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|7.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|7.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Hosting|7.0.0.0\",\"Microsoft.Extensions.Http|7.0.0.0\",\"Microsoft.Extensions.Identity.Core|7.0.0.0\",\"Microsoft.Extensions.Identity.Stores|7.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Localization|7.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|7.0.0.0\",\"Microsoft.Extensions.Logging.Console|7.0.0.0\",\"Microsoft.Extensions.Logging.Debug|7.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|7.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|7.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|7.0.0.0\",\"Microsoft.Extensions.Logging|7.0.0.0\",\"Microsoft.Extensions.ObjectPool|7.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|7.0.0.0\",\"Microsoft.Extensions.Options|7.0.0.0\",\"Microsoft.Extensions.Primitives|7.0.0.0\",\"Microsoft.Extensions.WebEncoders|7.0.0.0\",\"Microsoft.JSInterop|7.0.0.0\",\"Microsoft.Net.Http.Headers|7.0.0.0\",\"System.Diagnostics.EventLog|7.0.0.0\",\"System.IO.Pipelines|7.0.0.0\",\"System.Security.Cryptography.Xml|7.0.0.0\",\"System.Threading.RateLimiting|7.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v7.0.17\",\"sha512\":\"sha512-/WhhNj33VNbZJtVm79JuWAOgrkqCA+A7JceHYJ7MLQySzxGC96SrphHpaWjCv5gzPvPyJsUX4EV2MctIFWMc0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|7.0.0\",\"Microsoft.Extensions.Caching.Memory|7.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|7.0.0\",\"Microsoft.Extensions.Configuration.Binder|7.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|7.0.0\",\"Microsoft.Extensions.Configuration|7.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|7.0.0\",\"Microsoft.Extensions.Configuration.Ini|7.0.0\",\"Microsoft.Extensions.Configuration.Json|7.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|7.0.0\",\"Microsoft.Extensions.Configuration.Xml|7.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0\",\"Microsoft.Extensions.DependencyInjection|7.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|7.0.0\",\"Microsoft.Extensions.FileProviders.Composite|7.0.0\",\"Microsoft.Extensions.FileProviders.Physical|7.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|7.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|7.0.0\",\"Microsoft.Extensions.Hosting|7.0.0\",\"Microsoft.Extensions.Http|7.0.0\",\"Microsoft.Extensions.Logging.Abstractions|7.0.0\",\"Microsoft.Extensions.Logging.Configuration|7.0.0\",\"Microsoft.Extensions.Logging.Console|7.0.0\",\"Microsoft.Extensions.Logging.Debug|7.0.0\",\"Microsoft.Extensions.Logging|7.0.0\",\"Microsoft.Extensions.Logging.EventLog|7.0.0\",\"Microsoft.Extensions.Logging.EventSource|7.0.0\",\"Microsoft.Extensions.Logging.TraceSource|7.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|7.0.0\",\"Microsoft.Extensions.Options|7.0.0\",\"Microsoft.Extensions.Primitives|7.0.0\",\"System.Diagnostics.EventLog|7.0.0\",\"System.IO.Pipelines|7.0.0\",\"System.Security.Cryptography.Xml|7.0.0\",\"System.Threading.RateLimiting|7.0.0\",\"Microsoft.AspNetCore.Antiforgery|7.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|7.0.0\",\"Microsoft.AspNetCore.Authentication.Core|7.0.0\",\"Microsoft.AspNetCore.Authentication|7.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|7.0.0\",\"Microsoft.AspNetCore.Authorization|7.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|7.0.0\",\"Microsoft.AspNetCore.Components.Authorization|7.0.0\",\"Microsoft.AspNetCore.Components|7.0.0\",\"Microsoft.AspNetCore.Components.Forms|7.0.0\",\"Microsoft.AspNetCore.Components.Server|7.0.0\",\"Microsoft.AspNetCore.Components.Web|7.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|7.0.0\",\"Microsoft.AspNetCore.CookiePolicy|7.0.0\",\"Microsoft.AspNetCore.Cors|7.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|7.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0\",\"Microsoft.AspNetCore.DataProtection|7.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|7.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Diagnostics|7.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0\",\"Microsoft.AspNetCore|7.0.0\",\"Microsoft.AspNetCore.HostFiltering|7.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Hosting|7.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|7.0.0\",\"Microsoft.AspNetCore.Http.Connections|7.0.0\",\"Microsoft.AspNetCore.Http|7.0.0\",\"Microsoft.AspNetCore.Http.Extensions|7.0.0\",\"Microsoft.AspNetCore.Http.Features|7.0.0\",\"Microsoft.AspNetCore.Http.Results|7.0.0\",\"Microsoft.AspNetCore.HttpLogging|7.0.0\",\"Microsoft.AspNetCore.HttpOverrides|7.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|7.0.0\",\"Microsoft.AspNetCore.Identity|7.0.0\",\"Microsoft.AspNetCore.Localization|7.0.0\",\"Microsoft.AspNetCore.Localization.Routing|7.0.0\",\"Microsoft.AspNetCore.Metadata|7.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0\",\"Microsoft.AspNetCore.Mvc.Core|7.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|7.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0\",\"Microsoft.AspNetCore.Mvc|7.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|7.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|7.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|7.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0\",\"Microsoft.AspNetCore.OutputCaching|7.0.0\",\"Microsoft.AspNetCore.RateLimiting|7.0.0\",\"Microsoft.AspNetCore.Razor|7.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|7.0.0\",\"Microsoft.AspNetCore.RequestDecompression|7.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0\",\"Microsoft.AspNetCore.ResponseCaching|7.0.0\",\"Microsoft.AspNetCore.ResponseCompression|7.0.0\",\"Microsoft.AspNetCore.Rewrite|7.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Routing|7.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|7.0.0\",\"Microsoft.AspNetCore.Server.IIS|7.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0\",\"Microsoft.AspNetCore.Session|7.0.0\",\"Microsoft.AspNetCore.SignalR.Common|7.0.0\",\"Microsoft.AspNetCore.SignalR.Core|7.0.0\",\"Microsoft.AspNetCore.SignalR|7.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0\",\"Microsoft.AspNetCore.StaticFiles|7.0.0\",\"Microsoft.AspNetCore.WebSockets|7.0.0\",\"Microsoft.AspNetCore.WebUtilities|7.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|7.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0\",\"Microsoft.Extensions.Features|7.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|7.0.0\",\"Microsoft.Extensions.Identity.Core|7.0.0\",\"Microsoft.Extensions.Identity.Stores|7.0.0\",\"Microsoft.Extensions.Localization.Abstractions|7.0.0\",\"Microsoft.Extensions.Localization|7.0.0\",\"Microsoft.Extensions.ObjectPool|7.0.0\",\"Microsoft.Extensions.WebEncoders|7.0.0\",\"Microsoft.JSInterop|7.0.0\",\"Microsoft.Net.Http.Headers|7.0.0\"],\"version\":\"7.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|8.0.0.0\",\"Microsoft.AspNetCore.Authentication|8.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|8.0.0.0\",\"Microsoft.AspNetCore.Authorization|8.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|8.0.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|8.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|8.0.0.0\",\"Microsoft.AspNetCore.Components.Server|8.0.0.0\",\"Microsoft.AspNetCore.Components.Web|8.0.0.0\",\"Microsoft.AspNetCore.Components|8.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|8.0.0.0\",\"Microsoft.AspNetCore.Cors|8.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|8.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|8.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|8.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Hosting|8.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|8.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|8.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Features|8.0.0.0\",\"Microsoft.AspNetCore.Http.Results|8.0.0.0\",\"Microsoft.AspNetCore.Http|8.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|8.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|8.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|8.0.0.0\",\"Microsoft.AspNetCore.Identity|8.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|8.0.0.0\",\"Microsoft.AspNetCore.Localization|8.0.0.0\",\"Microsoft.AspNetCore.Metadata|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0.0\",\"Microsoft.AspNetCore.Mvc|8.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|8.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|8.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|8.0.0.0\",\"Microsoft.AspNetCore.Razor|8.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|8.0.0.0\",\"Microsoft.AspNetCore.Rewrite|8.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Routing|8.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|8.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|8.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|8.0.0.0\",\"Microsoft.AspNetCore.Session|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0.0\",\"Microsoft.AspNetCore.SignalR|8.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|8.0.0.0\",\"Microsoft.AspNetCore.WebSockets|8.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|8.0.0.0\",\"Microsoft.AspNetCore|8.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Caching.Memory|8.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|8.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|8.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|8.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|8.0.0.0\",\"Microsoft.Extensions.Configuration.Json|8.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|8.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|8.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|8.0.0.0\",\"Microsoft.Extensions.Configuration|8.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0.0\",\"Microsoft.Extensions.DependencyInjection|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0.0\",\"Microsoft.Extensions.Diagnostics|8.0.0.0\",\"Microsoft.Extensions.Features|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|8.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|8.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Hosting|8.0.0.0\",\"Microsoft.Extensions.Http|8.0.0.0\",\"Microsoft.Extensions.Identity.Core|8.0.0.0\",\"Microsoft.Extensions.Identity.Stores|8.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Localization|8.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|8.0.0.0\",\"Microsoft.Extensions.Logging.Console|8.0.0.0\",\"Microsoft.Extensions.Logging.Debug|8.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|8.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|8.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|8.0.0.0\",\"Microsoft.Extensions.Logging|8.0.0.0\",\"Microsoft.Extensions.ObjectPool|8.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|8.0.0.0\",\"Microsoft.Extensions.Options|8.0.0.0\",\"Microsoft.Extensions.Primitives|8.0.0.0\",\"Microsoft.Extensions.WebEncoders|8.0.0.0\",\"Microsoft.JSInterop|8.0.0.0\",\"Microsoft.Net.Http.Headers|8.0.0.0\",\"System.Diagnostics.EventLog|8.0.0.0\",\"System.IO.Pipelines|8.0.0.0\",\"System.Security.Cryptography.Xml|8.0.0.0\",\"System.Threading.RateLimiting|8.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v8.0.3\",\"sha512\":\"sha512-63hpt6nuhCktaoYxAB2RgldBxYCQY6SQ/oJqWnsd3ooIcBgIBp8ksbuDyZctWypEi10P/kzlnXbNdslVwFLeDw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|8.0.0\",\"Microsoft.Extensions.Caching.Memory|8.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|8.0.0\",\"Microsoft.Extensions.Configuration.Binder|8.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|8.0.0\",\"Microsoft.Extensions.Configuration|8.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|8.0.0\",\"Microsoft.Extensions.Configuration.Ini|8.0.0\",\"Microsoft.Extensions.Configuration.Json|8.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|8.0.0\",\"Microsoft.Extensions.Configuration.Xml|8.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0\",\"Microsoft.Extensions.DependencyInjection|8.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|8.0.0\",\"Microsoft.Extensions.Diagnostics|8.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|8.0.0\",\"Microsoft.Extensions.FileProviders.Composite|8.0.0\",\"Microsoft.Extensions.FileProviders.Physical|8.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|8.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|8.0.0\",\"Microsoft.Extensions.Hosting|8.0.0\",\"Microsoft.Extensions.Http|8.0.0\",\"Microsoft.Extensions.Logging.Abstractions|8.0.0\",\"Microsoft.Extensions.Logging.Configuration|8.0.0\",\"Microsoft.Extensions.Logging.Console|8.0.0\",\"Microsoft.Extensions.Logging.Debug|8.0.0\",\"Microsoft.Extensions.Logging|8.0.0\",\"Microsoft.Extensions.Logging.EventLog|8.0.0\",\"Microsoft.Extensions.Logging.EventSource|8.0.0\",\"Microsoft.Extensions.Logging.TraceSource|8.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|8.0.0\",\"Microsoft.Extensions.Options|8.0.0\",\"Microsoft.Extensions.Primitives|8.0.0\",\"System.Diagnostics.EventLog|8.0.0\",\"System.IO.Pipelines|8.0.0\",\"System.Security.Cryptography.Xml|8.0.0\",\"System.Threading.RateLimiting|8.0.0\",\"Microsoft.AspNetCore.Antiforgery|8.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|8.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|8.0.0\",\"Microsoft.AspNetCore.Authentication.Core|8.0.0\",\"Microsoft.AspNetCore.Authentication|8.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|8.0.0\",\"Microsoft.AspNetCore.Authorization|8.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|8.0.0\",\"Microsoft.AspNetCore.Components.Authorization|8.0.0\",\"Microsoft.AspNetCore.Components|8.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|8.0.0\",\"Microsoft.AspNetCore.Components.Forms|8.0.0\",\"Microsoft.AspNetCore.Components.Server|8.0.0\",\"Microsoft.AspNetCore.Components.Web|8.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|8.0.0\",\"Microsoft.AspNetCore.CookiePolicy|8.0.0\",\"Microsoft.AspNetCore.Cors|8.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|8.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0\",\"Microsoft.AspNetCore.DataProtection|8.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|8.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Diagnostics|8.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0\",\"Microsoft.AspNetCore|8.0.0\",\"Microsoft.AspNetCore.HostFiltering|8.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Hosting|8.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|8.0.0\",\"Microsoft.AspNetCore.Http.Connections|8.0.0\",\"Microsoft.AspNetCore.Http|8.0.0\",\"Microsoft.AspNetCore.Http.Extensions|8.0.0\",\"Microsoft.AspNetCore.Http.Features|8.0.0\",\"Microsoft.AspNetCore.Http.Results|8.0.0\",\"Microsoft.AspNetCore.HttpLogging|8.0.0\",\"Microsoft.AspNetCore.HttpOverrides|8.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|8.0.0\",\"Microsoft.AspNetCore.Identity|8.0.0\",\"Microsoft.AspNetCore.Localization|8.0.0\",\"Microsoft.AspNetCore.Localization.Routing|8.0.0\",\"Microsoft.AspNetCore.Metadata|8.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0\",\"Microsoft.AspNetCore.Mvc.Core|8.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|8.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0\",\"Microsoft.AspNetCore.Mvc|8.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|8.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|8.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|8.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0\",\"Microsoft.AspNetCore.OutputCaching|8.0.0\",\"Microsoft.AspNetCore.RateLimiting|8.0.0\",\"Microsoft.AspNetCore.Razor|8.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|8.0.0\",\"Microsoft.AspNetCore.RequestDecompression|8.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0\",\"Microsoft.AspNetCore.ResponseCaching|8.0.0\",\"Microsoft.AspNetCore.ResponseCompression|8.0.0\",\"Microsoft.AspNetCore.Rewrite|8.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Routing|8.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|8.0.0\",\"Microsoft.AspNetCore.Server.IIS|8.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0\",\"Microsoft.AspNetCore.Session|8.0.0\",\"Microsoft.AspNetCore.SignalR.Common|8.0.0\",\"Microsoft.AspNetCore.SignalR.Core|8.0.0\",\"Microsoft.AspNetCore.SignalR|8.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0\",\"Microsoft.AspNetCore.StaticFiles|8.0.0\",\"Microsoft.AspNetCore.WebSockets|8.0.0\",\"Microsoft.AspNetCore.WebUtilities|8.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|8.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0\",\"Microsoft.Extensions.Features|8.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|8.0.0\",\"Microsoft.Extensions.Identity.Core|8.0.0\",\"Microsoft.Extensions.Identity.Stores|8.0.0\",\"Microsoft.Extensions.Localization.Abstractions|8.0.0\",\"Microsoft.Extensions.Localization|8.0.0\",\"Microsoft.Extensions.ObjectPool|8.0.0\",\"Microsoft.Extensions.WebEncoders|8.0.0\",\"Microsoft.JSInterop|8.0.0\",\"Microsoft.Net.Http.Headers|8.0.0\"],\"version\":\"8.0.3\"}" + ], + "targeting_pack_overrides": { + "netstandard.library": [], + "netstandard.library.ref": [ + "Microsoft.Win32.Primitives|4.3.0", + "System.AppContext|4.3.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netframework.referenceassemblies.net20": [], + "microsoft.netframework.referenceassemblies.net35": [], + "microsoft.netframework.referenceassemblies.net40": [], + "microsoft.netframework.referenceassemblies.net45": [], + "microsoft.netframework.referenceassemblies.net451": [], + "microsoft.netframework.referenceassemblies.net452": [], + "microsoft.netframework.referenceassemblies.net46": [], + "microsoft.netframework.referenceassemblies.net461": [], + "microsoft.netframework.referenceassemblies.net462": [], + "microsoft.netframework.referenceassemblies.net47": [], + "microsoft.netframework.referenceassemblies.net471": [], + "microsoft.netframework.referenceassemblies.net472": [], + "microsoft.netframework.referenceassemblies.net48": [], + "microsoft.netframework.referenceassemblies.net481": [], + "microsoft.netcore.app": [], + "microsoft.netcore.app.ref": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System|4.3.0", + "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.aspnetcore.app": [], + "microsoft.aspnetcore.app.ref": [ + "Microsoft.Extensions.Caching.Abstractions|8.0.0", + "Microsoft.Extensions.Caching.Memory|8.0.0", + "Microsoft.Extensions.Configuration.Abstractions|8.0.0", + "Microsoft.Extensions.Configuration.Binder|8.0.0", + "Microsoft.Extensions.Configuration.CommandLine|8.0.0", + "Microsoft.Extensions.Configuration|8.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|8.0.0", + "Microsoft.Extensions.Configuration.Ini|8.0.0", + "Microsoft.Extensions.Configuration.Json|8.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|8.0.0", + "Microsoft.Extensions.Configuration.Xml|8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0", + "Microsoft.Extensions.DependencyInjection|8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions|8.0.0", + "Microsoft.Extensions.Diagnostics|8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|8.0.0", + "Microsoft.Extensions.FileProviders.Composite|8.0.0", + "Microsoft.Extensions.FileProviders.Physical|8.0.0", + "Microsoft.Extensions.FileSystemGlobbing|8.0.0", + "Microsoft.Extensions.Hosting.Abstractions|8.0.0", + "Microsoft.Extensions.Hosting|8.0.0", + "Microsoft.Extensions.Http|8.0.0", + "Microsoft.Extensions.Logging.Abstractions|8.0.0", + "Microsoft.Extensions.Logging.Configuration|8.0.0", + "Microsoft.Extensions.Logging.Console|8.0.0", + "Microsoft.Extensions.Logging.Debug|8.0.0", + "Microsoft.Extensions.Logging|8.0.0", + "Microsoft.Extensions.Logging.EventLog|8.0.0", + "Microsoft.Extensions.Logging.EventSource|8.0.0", + "Microsoft.Extensions.Logging.TraceSource|8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0", + "Microsoft.Extensions.Options.DataAnnotations|8.0.0", + "Microsoft.Extensions.Options|8.0.0", + "Microsoft.Extensions.Primitives|8.0.0", + "System.Diagnostics.EventLog|8.0.0", + "System.IO.Pipelines|8.0.0", + "System.Security.Cryptography.Xml|8.0.0", + "System.Threading.RateLimiting|8.0.0", + "Microsoft.AspNetCore.Antiforgery|8.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|8.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken|8.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|8.0.0", + "Microsoft.AspNetCore.Authentication.Core|8.0.0", + "Microsoft.AspNetCore.Authentication|8.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|8.0.0", + "Microsoft.AspNetCore.Authorization|8.0.0", + "Microsoft.AspNetCore.Authorization.Policy|8.0.0", + "Microsoft.AspNetCore.Components.Authorization|8.0.0", + "Microsoft.AspNetCore.Components|8.0.0", + "Microsoft.AspNetCore.Components.Endpoints|8.0.0", + "Microsoft.AspNetCore.Components.Forms|8.0.0", + "Microsoft.AspNetCore.Components.Server|8.0.0", + "Microsoft.AspNetCore.Components.Web|8.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|8.0.0", + "Microsoft.AspNetCore.CookiePolicy|8.0.0", + "Microsoft.AspNetCore.Cors|8.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|8.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0", + "Microsoft.AspNetCore.DataProtection|8.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|8.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0", + "Microsoft.AspNetCore.Diagnostics|8.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0", + "Microsoft.AspNetCore|8.0.0", + "Microsoft.AspNetCore.HostFiltering|8.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|8.0.0", + "Microsoft.AspNetCore.Hosting|8.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0", + "Microsoft.AspNetCore.Html.Abstractions|8.0.0", + "Microsoft.AspNetCore.Http.Abstractions|8.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|8.0.0", + "Microsoft.AspNetCore.Http.Connections|8.0.0", + "Microsoft.AspNetCore.Http|8.0.0", + "Microsoft.AspNetCore.Http.Extensions|8.0.0", + "Microsoft.AspNetCore.Http.Features|8.0.0", + "Microsoft.AspNetCore.Http.Results|8.0.0", + "Microsoft.AspNetCore.HttpLogging|8.0.0", + "Microsoft.AspNetCore.HttpOverrides|8.0.0", + "Microsoft.AspNetCore.HttpsPolicy|8.0.0", + "Microsoft.AspNetCore.Identity|8.0.0", + "Microsoft.AspNetCore.Localization|8.0.0", + "Microsoft.AspNetCore.Localization.Routing|8.0.0", + "Microsoft.AspNetCore.Metadata|8.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|8.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0", + "Microsoft.AspNetCore.Mvc.Core|8.0.0", + "Microsoft.AspNetCore.Mvc.Cors|8.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0", + "Microsoft.AspNetCore.Mvc|8.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0", + "Microsoft.AspNetCore.Mvc.Localization|8.0.0", + "Microsoft.AspNetCore.Mvc.Razor|8.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|8.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0", + "Microsoft.AspNetCore.OutputCaching|8.0.0", + "Microsoft.AspNetCore.RateLimiting|8.0.0", + "Microsoft.AspNetCore.Razor|8.0.0", + "Microsoft.AspNetCore.Razor.Runtime|8.0.0", + "Microsoft.AspNetCore.RequestDecompression|8.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0", + "Microsoft.AspNetCore.ResponseCaching|8.0.0", + "Microsoft.AspNetCore.ResponseCompression|8.0.0", + "Microsoft.AspNetCore.Rewrite|8.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|8.0.0", + "Microsoft.AspNetCore.Routing|8.0.0", + "Microsoft.AspNetCore.Server.HttpSys|8.0.0", + "Microsoft.AspNetCore.Server.IIS|8.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0", + "Microsoft.AspNetCore.Session|8.0.0", + "Microsoft.AspNetCore.SignalR.Common|8.0.0", + "Microsoft.AspNetCore.SignalR.Core|8.0.0", + "Microsoft.AspNetCore.SignalR|8.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0", + "Microsoft.AspNetCore.StaticFiles|8.0.0", + "Microsoft.AspNetCore.WebSockets|8.0.0", + "Microsoft.AspNetCore.WebUtilities|8.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|8.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0", + "Microsoft.Extensions.Features|8.0.0", + "Microsoft.Extensions.FileProviders.Embedded|8.0.0", + "Microsoft.Extensions.Identity.Core|8.0.0", + "Microsoft.Extensions.Identity.Stores|8.0.0", + "Microsoft.Extensions.Localization.Abstractions|8.0.0", + "Microsoft.Extensions.Localization|8.0.0", + "Microsoft.Extensions.ObjectPool|8.0.0", + "Microsoft.Extensions.WebEncoders|8.0.0", + "Microsoft.JSInterop|8.0.0", + "Microsoft.Net.Http.Headers|8.0.0" + ] + }, + "framework_list": { + "netstandard.library": [], + "netstandard.library.ref": [ + "Microsoft.Win32.Primitives|4.0.3.0", + "System.AppContext|4.1.2.0", + "System.Buffers|4.0.3.0", + "System.Collections.Concurrent|4.0.11.0", + "System.Collections.NonGeneric|4.0.3.0", + "System.Collections.Specialized|4.0.3.0", + "System.Collections|4.0.11.0", + "System.ComponentModel.Composition|4.0.0.0", + "System.ComponentModel.EventBasedAsync|4.0.11.0", + "System.ComponentModel.Primitives|4.1.2.0", + "System.ComponentModel.TypeConverter|4.1.2.0", + "System.ComponentModel|4.0.1.0", + "System.Console|4.0.2.0", + "System.Core|4.0.0.0", + "System.Data.Common|4.1.2.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|4.0.1.0", + "System.Diagnostics.Debug|4.0.11.0", + "System.Diagnostics.FileVersionInfo|4.0.2.0", + "System.Diagnostics.Process|4.1.2.0", + "System.Diagnostics.StackTrace|4.0.4.0", + "System.Diagnostics.TextWriterTraceListener|4.0.2.0", + "System.Diagnostics.Tools|4.0.1.0", + "System.Diagnostics.TraceSource|4.0.2.0", + "System.Diagnostics.Tracing|4.1.2.0", + "System.Drawing.Primitives|4.0.2.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|4.0.11.0", + "System.Globalization.Calendars|4.0.3.0", + "System.Globalization.Extensions|4.0.3.0", + "System.Globalization|4.0.11.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|4.0.3.0", + "System.IO.Compression|4.1.3.0", + "System.IO.FileSystem.DriveInfo|4.0.2.0", + "System.IO.FileSystem.Primitives|4.0.3.0", + "System.IO.FileSystem.Watcher|4.0.2.0", + "System.IO.FileSystem|4.0.3.0", + "System.IO.IsolatedStorage|4.0.2.0", + "System.IO.MemoryMappedFiles|4.0.2.0", + "System.IO.Pipes|4.0.2.0", + "System.IO.UnmanagedMemoryStream|4.0.3.0", + "System.IO|4.1.2.0", + "System.Linq.Expressions|4.1.2.0", + "System.Linq.Parallel|4.0.1.0", + "System.Linq.Queryable|4.0.1.0", + "System.Linq|4.1.2.0", + "System.Memory|4.0.2.0", + "System.Net.Http|4.1.2.0", + "System.Net.NameResolution|4.0.2.0", + "System.Net.NetworkInformation|4.1.2.0", + "System.Net.Ping|4.0.2.0", + "System.Net.Primitives|4.0.11.0", + "System.Net.Requests|4.0.11.0", + "System.Net.Security|4.0.2.0", + "System.Net.Sockets|4.1.2.0", + "System.Net.WebHeaderCollection|4.0.1.0", + "System.Net.WebSockets.Client|4.0.2.0", + "System.Net.WebSockets|4.0.2.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|4.1.5.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|4.0.11.0", + "System.Reflection.DispatchProxy|4.0.5.0", + "System.Reflection.Emit.ILGeneration|4.0.1.0", + "System.Reflection.Emit.Lightweight|4.0.1.0", + "System.Reflection.Emit|4.0.1.0", + "System.Reflection.Extensions|4.0.1.0", + "System.Reflection.Primitives|4.0.1.0", + "System.Reflection|4.1.2.0", + "System.Resources.Reader|4.0.2.0", + "System.Resources.ResourceManager|4.0.1.0", + "System.Resources.Writer|4.0.2.0", + "System.Runtime.CompilerServices.VisualC|4.0.2.0", + "System.Runtime.Extensions|4.1.2.0", + "System.Runtime.Handles|4.0.1.0", + "System.Runtime.InteropServices.RuntimeInformation|4.0.2.0", + "System.Runtime.InteropServices|4.1.2.0", + "System.Runtime.Numerics|4.0.1.0", + "System.Runtime.Serialization.Formatters|4.0.2.0", + "System.Runtime.Serialization.Json|4.0.1.0", + "System.Runtime.Serialization.Primitives|4.1.3.0", + "System.Runtime.Serialization.Xml|4.1.3.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|4.1.2.0", + "System.Security.Claims|4.0.3.0", + "System.Security.Cryptography.Algorithms|4.2.2.0", + "System.Security.Cryptography.Csp|4.0.2.0", + "System.Security.Cryptography.Encoding|4.0.2.0", + "System.Security.Cryptography.Primitives|4.0.2.0", + "System.Security.Cryptography.X509Certificates|4.1.2.0", + "System.Security.Principal|4.0.1.0", + "System.Security.SecureString|4.0.2.0", + "System.ServiceModel.Web|4.0.0.0", + "System.Text.Encoding.Extensions|4.0.11.0", + "System.Text.Encoding|4.0.11.0", + "System.Text.RegularExpressions|4.1.1.0", + "System.Threading.Overlapped|4.0.3.0", + "System.Threading.Tasks.Extensions|4.2.1.0", + "System.Threading.Tasks.Parallel|4.0.1.0", + "System.Threading.Tasks|4.0.11.0", + "System.Threading.Thread|4.0.2.0", + "System.Threading.ThreadPool|4.0.12.0", + "System.Threading.Timer|4.0.1.0", + "System.Threading|4.0.11.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.2.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|4.1.1.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|4.0.11.0", + "System.Xml.XPath.XDocument|4.0.3.0", + "System.Xml.XPath|4.0.3.0", + "System.Xml.XmlDocument|4.0.3.0", + "System.Xml.XmlSerializer|4.0.11.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netframework.referenceassemblies.net20": [], + "microsoft.netframework.referenceassemblies.net35": [], + "microsoft.netframework.referenceassemblies.net40": [], + "microsoft.netframework.referenceassemblies.net45": [], + "microsoft.netframework.referenceassemblies.net451": [], + "microsoft.netframework.referenceassemblies.net452": [], + "microsoft.netframework.referenceassemblies.net46": [], + "microsoft.netframework.referenceassemblies.net461": [], + "microsoft.netframework.referenceassemblies.net462": [], + "microsoft.netframework.referenceassemblies.net47": [], + "microsoft.netframework.referenceassemblies.net471": [], + "microsoft.netframework.referenceassemblies.net472": [], + "microsoft.netframework.referenceassemblies.net48": [], + "microsoft.netframework.referenceassemblies.net481": [], + "microsoft.netcore.app": [], + "microsoft.netcore.app.ref": [ + "Microsoft.CSharp|8.0.0.0", + "Microsoft.VisualBasic.Core|13.0.0.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|8.0.0.0", + "Microsoft.Win32.Registry|8.0.0.0", + "System.AppContext|8.0.0.0", + "System.Buffers|8.0.0.0", + "System.Collections.Concurrent|8.0.0.0", + "System.Collections.Immutable|8.0.0.0", + "System.Collections.NonGeneric|8.0.0.0", + "System.Collections.Specialized|8.0.0.0", + "System.Collections|8.0.0.0", + "System.ComponentModel.Annotations|8.0.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|8.0.0.0", + "System.ComponentModel.Primitives|8.0.0.0", + "System.ComponentModel.TypeConverter|8.0.0.0", + "System.ComponentModel|8.0.0.0", + "System.Configuration|4.0.0.0", + "System.Console|8.0.0.0", + "System.Core|4.0.0.0", + "System.Data.Common|8.0.0.0", + "System.Data.DataSetExtensions|8.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|8.0.0.0", + "System.Diagnostics.Debug|8.0.0.0", + "System.Diagnostics.DiagnosticSource|8.0.0.0", + "System.Diagnostics.FileVersionInfo|8.0.0.0", + "System.Diagnostics.Process|8.0.0.0", + "System.Diagnostics.StackTrace|8.0.0.0", + "System.Diagnostics.TextWriterTraceListener|8.0.0.0", + "System.Diagnostics.Tools|8.0.0.0", + "System.Diagnostics.TraceSource|8.0.0.0", + "System.Diagnostics.Tracing|8.0.0.0", + "System.Drawing.Primitives|8.0.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|8.0.0.0", + "System.Formats.Asn1|8.0.0.0", + "System.Formats.Tar|8.0.0.0", + "System.Globalization.Calendars|8.0.0.0", + "System.Globalization.Extensions|8.0.0.0", + "System.Globalization|8.0.0.0", + "System.IO.Compression.Brotli|8.0.0.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|8.0.0.0", + "System.IO.Compression|8.0.0.0", + "System.IO.FileSystem.AccessControl|8.0.0.0", + "System.IO.FileSystem.DriveInfo|8.0.0.0", + "System.IO.FileSystem.Primitives|8.0.0.0", + "System.IO.FileSystem.Watcher|8.0.0.0", + "System.IO.FileSystem|8.0.0.0", + "System.IO.IsolatedStorage|8.0.0.0", + "System.IO.MemoryMappedFiles|8.0.0.0", + "System.IO.Pipes.AccessControl|8.0.0.0", + "System.IO.Pipes|8.0.0.0", + "System.IO.UnmanagedMemoryStream|8.0.0.0", + "System.IO|8.0.0.0", + "System.Linq.Expressions|8.0.0.0", + "System.Linq.Parallel|8.0.0.0", + "System.Linq.Queryable|8.0.0.0", + "System.Linq|8.0.0.0", + "System.Memory|8.0.0.0", + "System.Net.Http.Json|8.0.0.0", + "System.Net.Http|8.0.0.0", + "System.Net.HttpListener|8.0.0.0", + "System.Net.Mail|8.0.0.0", + "System.Net.NameResolution|8.0.0.0", + "System.Net.NetworkInformation|8.0.0.0", + "System.Net.Ping|8.0.0.0", + "System.Net.Primitives|8.0.0.0", + "System.Net.Quic|8.0.0.0", + "System.Net.Requests|8.0.0.0", + "System.Net.Security|8.0.0.0", + "System.Net.ServicePoint|8.0.0.0", + "System.Net.Sockets|8.0.0.0", + "System.Net.WebClient|8.0.0.0", + "System.Net.WebHeaderCollection|8.0.0.0", + "System.Net.WebProxy|8.0.0.0", + "System.Net.WebSockets.Client|8.0.0.0", + "System.Net.WebSockets|8.0.0.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|8.0.0.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|8.0.0.0", + "System.Reflection.DispatchProxy|8.0.0.0", + "System.Reflection.Emit.ILGeneration|8.0.0.0", + "System.Reflection.Emit.Lightweight|8.0.0.0", + "System.Reflection.Emit|8.0.0.0", + "System.Reflection.Extensions|8.0.0.0", + "System.Reflection.Metadata|8.0.0.0", + "System.Reflection.Primitives|8.0.0.0", + "System.Reflection.TypeExtensions|8.0.0.0", + "System.Reflection|8.0.0.0", + "System.Resources.Reader|8.0.0.0", + "System.Resources.ResourceManager|8.0.0.0", + "System.Resources.Writer|8.0.0.0", + "System.Runtime.CompilerServices.Unsafe|8.0.0.0", + "System.Runtime.CompilerServices.VisualC|8.0.0.0", + "System.Runtime.Extensions|8.0.0.0", + "System.Runtime.Handles|8.0.0.0", + "System.Runtime.InteropServices.JavaScript|8.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation|8.0.0.0", + "System.Runtime.InteropServices|8.0.0.0", + "System.Runtime.Intrinsics|8.0.0.0", + "System.Runtime.Loader|8.0.0.0", + "System.Runtime.Numerics|8.0.0.0", + "System.Runtime.Serialization.Formatters|8.0.0.0", + "System.Runtime.Serialization.Json|8.0.0.0", + "System.Runtime.Serialization.Primitives|8.0.0.0", + "System.Runtime.Serialization.Xml|8.0.0.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|8.0.0.0", + "System.Security.AccessControl|8.0.0.0", + "System.Security.Claims|8.0.0.0", + "System.Security.Cryptography.Algorithms|8.0.0.0", + "System.Security.Cryptography.Cng|8.0.0.0", + "System.Security.Cryptography.Csp|8.0.0.0", + "System.Security.Cryptography.Encoding|8.0.0.0", + "System.Security.Cryptography.OpenSsl|8.0.0.0", + "System.Security.Cryptography.Primitives|8.0.0.0", + "System.Security.Cryptography.X509Certificates|8.0.0.0", + "System.Security.Cryptography|8.0.0.0", + "System.Security.Principal.Windows|8.0.0.0", + "System.Security.Principal|8.0.0.0", + "System.Security.SecureString|8.0.0.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|8.0.0.0", + "System.Text.Encoding.Extensions|8.0.0.0", + "System.Text.Encoding|8.0.0.0", + "System.Text.Encodings.Web|8.0.0.0", + "System.Text.Json|8.0.0.0", + "System.Text.RegularExpressions|8.0.0.0", + "System.Threading.Channels|8.0.0.0", + "System.Threading.Overlapped|8.0.0.0", + "System.Threading.Tasks.Dataflow|8.0.0.0", + "System.Threading.Tasks.Extensions|8.0.0.0", + "System.Threading.Tasks.Parallel|8.0.0.0", + "System.Threading.Tasks|8.0.0.0", + "System.Threading.Thread|8.0.0.0", + "System.Threading.ThreadPool|8.0.0.0", + "System.Threading.Timer|8.0.0.0", + "System.Threading|8.0.0.0", + "System.Transactions.Local|8.0.0.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|8.0.0.0", + "System.Web.HttpUtility|8.0.0.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|8.0.0.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|8.0.0.0", + "System.Xml.XPath.XDocument|8.0.0.0", + "System.Xml.XPath|8.0.0.0", + "System.Xml.XmlDocument|8.0.0.0", + "System.Xml.XmlSerializer|8.0.0.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.aspnetcore.app": [], + "microsoft.aspnetcore.app.ref": [ + "Microsoft.AspNetCore.Antiforgery|8.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken|8.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|8.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|8.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|8.0.0.0", + "Microsoft.AspNetCore.Authentication|8.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|8.0.0.0", + "Microsoft.AspNetCore.Authorization|8.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|8.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints|8.0.0.0", + "Microsoft.AspNetCore.Components.Forms|8.0.0.0", + "Microsoft.AspNetCore.Components.Server|8.0.0.0", + "Microsoft.AspNetCore.Components.Web|8.0.0.0", + "Microsoft.AspNetCore.Components|8.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|8.0.0.0", + "Microsoft.AspNetCore.Cors|8.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|8.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|8.0.0.0", + "Microsoft.AspNetCore.DataProtection|8.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0.0", + "Microsoft.AspNetCore.Diagnostics|8.0.0.0", + "Microsoft.AspNetCore.HostFiltering|8.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Hosting|8.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|8.0.0.0", + "Microsoft.AspNetCore.Http.Connections|8.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|8.0.0.0", + "Microsoft.AspNetCore.Http.Features|8.0.0.0", + "Microsoft.AspNetCore.Http.Results|8.0.0.0", + "Microsoft.AspNetCore.Http|8.0.0.0", + "Microsoft.AspNetCore.HttpLogging|8.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|8.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|8.0.0.0", + "Microsoft.AspNetCore.Identity|8.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|8.0.0.0", + "Microsoft.AspNetCore.Localization|8.0.0.0", + "Microsoft.AspNetCore.Metadata|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|8.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|8.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|8.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0.0", + "Microsoft.AspNetCore.Mvc|8.0.0.0", + "Microsoft.AspNetCore.OutputCaching|8.0.0.0", + "Microsoft.AspNetCore.RateLimiting|8.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|8.0.0.0", + "Microsoft.AspNetCore.Razor|8.0.0.0", + "Microsoft.AspNetCore.RequestDecompression|8.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|8.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|8.0.0.0", + "Microsoft.AspNetCore.Rewrite|8.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Routing|8.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|8.0.0.0", + "Microsoft.AspNetCore.Server.IIS|8.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|8.0.0.0", + "Microsoft.AspNetCore.Session|8.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|8.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|8.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0.0", + "Microsoft.AspNetCore.SignalR|8.0.0.0", + "Microsoft.AspNetCore.StaticFiles|8.0.0.0", + "Microsoft.AspNetCore.WebSockets|8.0.0.0", + "Microsoft.AspNetCore.WebUtilities|8.0.0.0", + "Microsoft.AspNetCore|8.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|8.0.0.0", + "Microsoft.Extensions.Caching.Memory|8.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|8.0.0.0", + "Microsoft.Extensions.Configuration.Binder|8.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|8.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|8.0.0.0", + "Microsoft.Extensions.Configuration.Ini|8.0.0.0", + "Microsoft.Extensions.Configuration.Json|8.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|8.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|8.0.0.0", + "Microsoft.Extensions.Configuration.Xml|8.0.0.0", + "Microsoft.Extensions.Configuration|8.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0.0", + "Microsoft.Extensions.DependencyInjection|8.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions|8.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0.0", + "Microsoft.Extensions.Diagnostics|8.0.0.0", + "Microsoft.Extensions.Features|8.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|8.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|8.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|8.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|8.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|8.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|8.0.0.0", + "Microsoft.Extensions.Hosting|8.0.0.0", + "Microsoft.Extensions.Http|8.0.0.0", + "Microsoft.Extensions.Identity.Core|8.0.0.0", + "Microsoft.Extensions.Identity.Stores|8.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|8.0.0.0", + "Microsoft.Extensions.Localization|8.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|8.0.0.0", + "Microsoft.Extensions.Logging.Configuration|8.0.0.0", + "Microsoft.Extensions.Logging.Console|8.0.0.0", + "Microsoft.Extensions.Logging.Debug|8.0.0.0", + "Microsoft.Extensions.Logging.EventLog|8.0.0.0", + "Microsoft.Extensions.Logging.EventSource|8.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|8.0.0.0", + "Microsoft.Extensions.Logging|8.0.0.0", + "Microsoft.Extensions.ObjectPool|8.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|8.0.0.0", + "Microsoft.Extensions.Options|8.0.0.0", + "Microsoft.Extensions.Primitives|8.0.0.0", + "Microsoft.Extensions.WebEncoders|8.0.0.0", + "Microsoft.JSInterop|8.0.0.0", + "Microsoft.Net.Http.Headers|8.0.0.0", + "System.Diagnostics.EventLog|8.0.0.0", + "System.IO.Pipelines|8.0.0.0", + "System.Security.Cryptography.Xml|8.0.0.0", + "System.Threading.RateLimiting|8.0.0.0" + ] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "local_config_platform", + "platforms", + "platforms" + ], + [ + "platforms", + "host_platform", + "platforms~host_platform~host_platform" + ], + [ + "rules_dotnet~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_dotnet~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_dotnet~", + "local_config_platform", + "local_config_platform" + ], + [ + "rules_dotnet~", + "rules_dotnet", + "rules_dotnet~" + ] + ] + } + }, + "@@rules_foreign_cc~//foreign_cc:extensions.bzl%tools": { "general": { - "bzlTransitiveDigest": "FApcIcVN43WOEs7g8eg7Cy1hrfRbVNEoUu8IiF+8WOc=", - "usagesDigest": "9LXdVp01HkdYQT8gYPjYLO6VLVJHo9uFfxWaU1ymiRE=", + "bzlTransitiveDigest": "a7qnESofmIRYId6wwGNPJ9kvExU80KrkxL281P3+lBE=", + "usagesDigest": "hK5/SjH6eu1u+V0YHRti+lZvw7Wb4oU6Raw6P0mAfDQ=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "rules_foreign_cc_framework_toolchain_linux": { - "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", + "ruleClassName": "framework_toolchain_repository", "attributes": { "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl", "exec_compatible_with": [ @@ -1622,7 +4962,8 @@ } }, "rules_foreign_cc_framework_toolchain_freebsd": { - "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", + "ruleClassName": "framework_toolchain_repository", "attributes": { "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl", "exec_compatible_with": [ @@ -1631,7 +4972,8 @@ } }, "rules_foreign_cc_framework_toolchain_windows": { - "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", + "ruleClassName": "framework_toolchain_repository", "attributes": { "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl", "exec_compatible_with": [ @@ -1640,7 +4982,8 @@ } }, "rules_foreign_cc_framework_toolchain_macos": { - "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", + "ruleClassName": "framework_toolchain_repository", "attributes": { "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl", "exec_compatible_with": [ @@ -1649,11 +4992,13 @@ } }, "rules_foreign_cc_framework_toolchains": { - "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository_hub", + "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl", + "ruleClassName": "framework_toolchain_repository_hub", "attributes": {} }, "cmake_src": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa", @@ -1664,7 +5009,8 @@ } }, "gnumake_src": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", "sha256": "581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18", @@ -1676,7 +5022,8 @@ } }, "ninja_build_src": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", "sha256": "31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea", @@ -1687,7 +5034,8 @@ } }, "meson_src": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "exports_files([\"meson.py\"])\n\nfilegroup(\n name = \"runtime\",\n srcs = glob([\"mesonbuild/**\"]),\n visibility = [\"//visibility:public\"],\n)\n", "strip_prefix": "meson-1.1.1", @@ -1695,7 +5043,8 @@ } }, "glib_dev": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "\nload(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\n\ncc_import(\n name = \"glib_dev\",\n hdrs = glob([\"include/**\"]),\n shared_library = \"@glib_runtime//:bin/libglib-2.0-0.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", "sha256": "bdf18506df304d38be98a4b3f18055b8b8cca81beabecad0eece6ce95319c369", @@ -1705,7 +5054,8 @@ } }, "glib_src": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "\ncc_import(\n name = \"msvc_hdr\",\n hdrs = [\"msvc_recommended_pragmas.h\"],\n visibility = [\"//visibility:public\"],\n)\n ", "sha256": "bc96f63112823b7d6c9f06572d2ad626ddac7eb452c04d762592197f6e07898e", @@ -1716,7 +5066,8 @@ } }, "glib_runtime": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "\nexports_files(\n [\n \"bin/libgio-2.0-0.dll\",\n \"bin/libglib-2.0-0.dll\",\n \"bin/libgmodule-2.0-0.dll\",\n \"bin/libgobject-2.0-0.dll\",\n \"bin/libgthread-2.0-0.dll\",\n ],\n visibility = [\"//visibility:public\"],\n)\n ", "sha256": "88d857087e86f16a9be651ee7021880b3f7ba050d34a1ed9f06113b8799cb973", @@ -1726,7 +5077,8 @@ } }, "gettext_runtime": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "\ncc_import(\n name = \"gettext_runtime\",\n shared_library = \"bin/libintl-8.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", "sha256": "1f4269c0e021076d60a54e98da6f978a3195013f6de21674ba0edbc339c5b079", @@ -1736,14 +5088,15 @@ } }, "pkgconfig_src": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", "sha256": "6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591", "strip_prefix": "pkg-config-0.29.2", "patches": [ - "@@rules_foreign_cc+//toolchains:pkgconfig-detectenv.patch", - "@@rules_foreign_cc+//toolchains:pkgconfig-makefile-vc.patch" + "@@rules_foreign_cc~//toolchains:pkgconfig-detectenv.patch", + "@@rules_foreign_cc~//toolchains:pkgconfig-makefile-vc.patch" ], "urls": [ "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz" @@ -1751,7 +5104,8 @@ } }, "bazel_skylib": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", @@ -1761,7 +5115,8 @@ } }, "rules_python": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "sha256": "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", "strip_prefix": "rules_python-0.23.1", @@ -1769,7 +5124,8 @@ } }, "cmake-3.23.2-linux-aarch64": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz" @@ -1780,7 +5136,8 @@ } }, "cmake-3.23.2-linux-x86_64": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz" @@ -1791,7 +5148,8 @@ } }, "cmake-3.23.2-macos-universal": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz" @@ -1802,7 +5160,8 @@ } }, "cmake-3.23.2-windows-i386": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip" @@ -1813,7 +5172,8 @@ } }, "cmake-3.23.2-windows-x86_64": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip" @@ -1824,7 +5184,8 @@ } }, "cmake_3.23.2_toolchains": { - "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository", + "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl", + "ruleClassName": "prebuilt_toolchains_repository", "attributes": { "repos": { "cmake-3.23.2-linux-aarch64": [ @@ -1851,7 +5212,8 @@ } }, "ninja_1.11.1_linux": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip" @@ -1862,7 +5224,8 @@ } }, "ninja_1.11.1_mac": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-mac.zip" @@ -1873,7 +5236,8 @@ } }, "ninja_1.11.1_win": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "urls": [ "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip" @@ -1884,7 +5248,8 @@ } }, "ninja_1.11.1_toolchains": { - "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository", + "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl", + "ruleClassName": "prebuilt_toolchains_repository", "attributes": { "repos": { "ninja_1.11.1_linux": [ @@ -1906,28 +5271,29 @@ }, "recordedRepoMappingEntries": [ [ - "rules_foreign_cc+", + "rules_foreign_cc~", "bazel_tools", "bazel_tools" ], [ - "rules_foreign_cc+", + "rules_foreign_cc~", "rules_foreign_cc", - "rules_foreign_cc+" + "rules_foreign_cc~" ] ] } }, - "@@rules_kotlin+//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { + "@@rules_kotlin~//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { "general": { - "bzlTransitiveDigest": "sFhcgPbDQehmbD1EOXzX4H1q/CD5df8zwG4kp4jbvr8=", - "usagesDigest": "QI2z8ZUR+mqtbwsf2fLqYdJAkPOHdOV+tF2yVAUgRzw=", + "bzlTransitiveDigest": "fus14IFJ/1LGWWGKPH/U18VnJCoMjfDt1ckahqCnM0A=", + "usagesDigest": "aJF6fLy82rR95Ff5CZPAqxNoFgOMLMN5ImfBS0nhnkg=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "com_github_jetbrains_kotlin_git": { - "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_compiler_git_repository", + "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:compiler.bzl", + "ruleClassName": "kotlin_compiler_git_repository", "attributes": { "urls": [ "https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip" @@ -1936,14 +5302,16 @@ } }, "com_github_jetbrains_kotlin": { - "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_capabilities_repository", + "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:compiler.bzl", + "ruleClassName": "kotlin_capabilities_repository", "attributes": { "git_repository_name": "com_github_jetbrains_kotlin_git", "compiler_version": "1.9.23" } }, "com_github_google_ksp": { - "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:ksp.bzl%ksp_compiler_plugin_repository", + "bzlFile": "@@rules_kotlin~//src/main/starlark/core/repositories:ksp.bzl", + "ruleClassName": "ksp_compiler_plugin_repository", "attributes": { "urls": [ "https://github.com/google/ksp/releases/download/1.9.23-1.0.20/artifacts.zip" @@ -1953,7 +5321,8 @@ } }, "com_github_pinterest_ktlint": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_file", "attributes": { "sha256": "01b2e0ef893383a50dbeb13970fe7fa3be36ca3e83259e01649945b09d736985", "urls": [ @@ -1963,7 +5332,8 @@ } }, "rules_android": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", "attributes": { "sha256": "cd06d15dd8bb59926e4d65f9003bfc20f9da4b2519985c27e190cddc8b7a7806", "strip_prefix": "rules_android-0.1.1", @@ -1975,84 +5345,94 @@ }, "recordedRepoMappingEntries": [ [ - "rules_kotlin+", + "rules_kotlin~", "bazel_tools", "bazel_tools" ] ] } }, - "@@rules_nodejs+//nodejs:extensions.bzl%node": { + "@@rules_nodejs~//nodejs:extensions.bzl%node": { "general": { - "bzlTransitiveDigest": "btnelILPo3ngQN9vWtsQMclvJZPf3X2vcGTjmW7Owy8=", - "usagesDigest": "CtwJeycIo1YVyKAUrO/7bkpB6yqctQd8XUnRtqUbwRI=", + "bzlTransitiveDigest": "xRRX0NuyvfLtjtzM4AqJgxdMSWWnLIw28rUUi10y6k0=", + "usagesDigest": "9IUJvk13jWE1kE+N3sP2y0mw9exjO9CGQ2oAgwKTNK4=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { "nodejs_linux_amd64": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "linux_amd64", "node_version": "16.19.0" } }, "nodejs_linux_arm64": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "linux_arm64", "node_version": "16.19.0" } }, "nodejs_linux_s390x": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "linux_s390x", "node_version": "16.19.0" } }, "nodejs_linux_ppc64le": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "linux_ppc64le", "node_version": "16.19.0" } }, "nodejs_darwin_amd64": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "darwin_amd64", "node_version": "16.19.0" } }, "nodejs_darwin_arm64": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "darwin_arm64", "node_version": "16.19.0" } }, "nodejs_windows_amd64": { - "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%node_repositories", + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", "attributes": { "platform": "windows_amd64", "node_version": "16.19.0" } }, "nodejs": { - "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", + "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", + "ruleClassName": "nodejs_repo_host_os_alias", "attributes": { "user_node_repository_name": "nodejs" } }, "nodejs_host": { - "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", + "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", + "ruleClassName": "nodejs_repo_host_os_alias", "attributes": { "user_node_repository_name": "nodejs" } }, "nodejs_toolchains": { - "repoRuleId": "@@rules_nodejs+//nodejs/private:toolchains_repo.bzl%toolchains_repo", + "bzlFile": "@@rules_nodejs~//nodejs/private:toolchains_repo.bzl", + "ruleClassName": "toolchains_repo", "attributes": { "user_node_repository_name": "nodejs" } @@ -2060,30 +5440,30 @@ }, "recordedRepoMappingEntries": [ [ - "rules_nodejs+", + "rules_nodejs~", "bazel_skylib", - "bazel_skylib+" + "bazel_skylib~" ], [ - "rules_nodejs+", + "rules_nodejs~", "bazel_tools", "bazel_tools" ] ] } }, - "@@rules_python+//python/extensions:pip.bzl%pip": { + "@@rules_python~//python/extensions:pip.bzl%pip": { "general": { - "bzlTransitiveDigest": "b7yaNpUGZLn3mZOzyxDku8HdKEnDUccWr4puwv3QxJs=", - "usagesDigest": "B0zga5j6jt6wT/fYUaf1qstVH+UsFLxtWkDhrFgTMcw=", + "bzlTransitiveDigest": "WlH4eDDbIM6xLbNXP/vdObd+oj791q6TrnABVuaLDv8=", + "usagesDigest": "r5enx2rvTQVGh3OdNhK35pAoR6Z69MhzyGhgMA8uu6Y=", "recordedFileInputs": { + "@@rules_python~//tools/publish/requirements_linux.txt": "8175b4c8df50ae2f22d1706961884beeb54e7da27bd2447018314a175981997d", "@@//python/requirements_lock.txt": "bad677d9662455c9e4bb524334302f07b70b850c99cfb271aede4b7cd1b95cab", - "@@grpc+//requirements.bazel.txt": "4c8c19a2a8f22108bf29feb5cc2694eb0c7e0c82ba0364df27fe5f5e4d7936e5", - "@@protobuf+//python/requirements.txt": "983be60d3cec4b319dcab6d48aeb3f5b2f7c3350f26b3a9e97486c37967c73c5", - "@@rules_fuzzing+//fuzzing/requirements.txt": "ab04664be026b632a0d2a2446c4f65982b7654f5b6851d2f9d399a19b7242a5b", - "@@rules_python+//tools/publish/requirements_darwin.txt": "2994136eab7e57b083c3de76faf46f70fad130bc8e7360a7fed2b288b69e79dc", - "@@rules_python+//tools/publish/requirements_linux.txt": "8175b4c8df50ae2f22d1706961884beeb54e7da27bd2447018314a175981997d", - "@@rules_python+//tools/publish/requirements_windows.txt": "7673adc71dc1a81d3661b90924d7a7c0fc998cd508b3cb4174337cef3f2de556" + "@@grpc~//requirements.bazel.txt": "4c8c19a2a8f22108bf29feb5cc2694eb0c7e0c82ba0364df27fe5f5e4d7936e5", + "@@rules_fuzzing~//fuzzing/requirements.txt": "ab04664be026b632a0d2a2446c4f65982b7654f5b6851d2f9d399a19b7242a5b", + "@@rules_python~//tools/publish/requirements_windows.txt": "7673adc71dc1a81d3661b90924d7a7c0fc998cd508b3cb4174337cef3f2de556", + "@@protobuf~//python/requirements.txt": "983be60d3cec4b319dcab6d48aeb3f5b2f7c3350f26b3a9e97486c37967c73c5", + "@@rules_python~//tools/publish/requirements_darwin.txt": "2994136eab7e57b083c3de76faf46f70fad130bc8e7360a7fed2b288b69e79dc" }, "recordedDirentsInputs": {}, "envVariables": { @@ -2092,1972 +5472,2188 @@ }, "generatedRepoSpecs": { "grpc_python_dependencies_310_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "absl-py==1.4.0" } }, "grpc_python_dependencies_310_cachetools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "cachetools==5.3.2" } }, "grpc_python_dependencies_310_certifi": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "certifi==2023.7.22" } }, "grpc_python_dependencies_310_chardet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "chardet==3.0.4" } }, "grpc_python_dependencies_310_charset_normalizer": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "charset-normalizer==3.3.2" } }, "grpc_python_dependencies_310_coverage": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "coverage==4.5.4" } }, "grpc_python_dependencies_310_cython": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "cython==3.0.0" } }, "grpc_python_dependencies_310_deprecated": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "Deprecated==1.2.14" } }, "grpc_python_dependencies_310_gevent": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "gevent==22.08.0" } }, "grpc_python_dependencies_310_google_api_core": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "google-api-core==1.34.1" } }, "grpc_python_dependencies_310_google_auth": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "google-auth==2.23.4" } }, "grpc_python_dependencies_310_google_cloud_monitoring": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "google-cloud-monitoring==2.16.0" } }, "grpc_python_dependencies_310_google_cloud_trace": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "google-cloud-trace==1.11.3" } }, "grpc_python_dependencies_310_googleapis_common_protos": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "googleapis-common-protos==1.63.1" } }, "grpc_python_dependencies_310_greenlet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "greenlet==1.1.3.post0" } }, "grpc_python_dependencies_310_idna": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "idna==2.7" } }, "grpc_python_dependencies_310_importlib_metadata": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "importlib-metadata==6.11.0" } }, "grpc_python_dependencies_310_oauth2client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "oauth2client==4.1.0" } }, "grpc_python_dependencies_310_opencensus_context": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "opencensus-context==0.1.3" } }, "grpc_python_dependencies_310_opentelemetry_api": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "opentelemetry-api==1.25.0" } }, "grpc_python_dependencies_310_opentelemetry_exporter_prometheus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, "grpc_python_dependencies_310_opentelemetry_resourcedetector_gcp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, "grpc_python_dependencies_310_opentelemetry_sdk": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "opentelemetry-sdk==1.25.0" } }, "grpc_python_dependencies_310_opentelemetry_semantic_conventions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, "grpc_python_dependencies_310_prometheus_client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "prometheus_client==0.20.0" } }, "grpc_python_dependencies_310_proto_plus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "proto-plus==1.22.3" } }, "grpc_python_dependencies_310_protobuf": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "protobuf>=5.27.1,<6.0dev" } }, "grpc_python_dependencies_310_pyasn1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "pyasn1==0.5.0" } }, "grpc_python_dependencies_310_pyasn1_modules": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "pyasn1-modules==0.3.0" } }, "grpc_python_dependencies_310_requests": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "requests==2.25.1" } }, "grpc_python_dependencies_310_rsa": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "rsa==4.9" } }, "grpc_python_dependencies_310_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "setuptools==44.1.1" } }, "grpc_python_dependencies_310_typing_extensions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "typing-extensions==4.9.0" } }, "grpc_python_dependencies_310_urllib3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "urllib3==1.26.18" } }, "grpc_python_dependencies_310_wheel": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "wheel==0.38.1" } }, "grpc_python_dependencies_310_wrapt": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "wrapt==1.16.0" } }, "grpc_python_dependencies_310_zipp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "zipp==3.17.0" } }, "grpc_python_dependencies_310_zope_event": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "zope.event==4.5.0" } }, "grpc_python_dependencies_310_zope_interface": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "grpc_python_dependencies_310", "requirement": "zope.interface==6.1" } }, "grpc_python_dependencies_311_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "absl-py==1.4.0" } }, "grpc_python_dependencies_311_cachetools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "cachetools==5.3.2" } }, "grpc_python_dependencies_311_certifi": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "certifi==2023.7.22" } }, "grpc_python_dependencies_311_chardet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "chardet==3.0.4" } }, "grpc_python_dependencies_311_charset_normalizer": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "charset-normalizer==3.3.2" } }, "grpc_python_dependencies_311_coverage": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "coverage==4.5.4" } }, "grpc_python_dependencies_311_cython": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "cython==3.0.0" } }, "grpc_python_dependencies_311_deprecated": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "Deprecated==1.2.14" } }, "grpc_python_dependencies_311_gevent": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "gevent==22.08.0" } }, "grpc_python_dependencies_311_google_api_core": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "google-api-core==1.34.1" } }, "grpc_python_dependencies_311_google_auth": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "google-auth==2.23.4" } }, "grpc_python_dependencies_311_google_cloud_monitoring": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "google-cloud-monitoring==2.16.0" } }, "grpc_python_dependencies_311_google_cloud_trace": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "google-cloud-trace==1.11.3" } }, "grpc_python_dependencies_311_googleapis_common_protos": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "googleapis-common-protos==1.63.1" } }, "grpc_python_dependencies_311_greenlet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "greenlet==1.1.3.post0" } }, "grpc_python_dependencies_311_idna": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "idna==2.7" } }, "grpc_python_dependencies_311_importlib_metadata": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "importlib-metadata==6.11.0" } }, "grpc_python_dependencies_311_oauth2client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "oauth2client==4.1.0" } }, "grpc_python_dependencies_311_opencensus_context": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "opencensus-context==0.1.3" } }, "grpc_python_dependencies_311_opentelemetry_api": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "opentelemetry-api==1.25.0" } }, "grpc_python_dependencies_311_opentelemetry_exporter_prometheus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, "grpc_python_dependencies_311_opentelemetry_resourcedetector_gcp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, "grpc_python_dependencies_311_opentelemetry_sdk": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "opentelemetry-sdk==1.25.0" } }, "grpc_python_dependencies_311_opentelemetry_semantic_conventions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, "grpc_python_dependencies_311_prometheus_client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "prometheus_client==0.20.0" } }, "grpc_python_dependencies_311_proto_plus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "proto-plus==1.22.3" } }, "grpc_python_dependencies_311_protobuf": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "protobuf>=5.27.1,<6.0dev" } }, "grpc_python_dependencies_311_pyasn1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "pyasn1==0.5.0" } }, "grpc_python_dependencies_311_pyasn1_modules": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "pyasn1-modules==0.3.0" } }, "grpc_python_dependencies_311_requests": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "requests==2.25.1" } }, "grpc_python_dependencies_311_rsa": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "rsa==4.9" } }, "grpc_python_dependencies_311_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "setuptools==44.1.1" } }, "grpc_python_dependencies_311_typing_extensions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "typing-extensions==4.9.0" } }, "grpc_python_dependencies_311_urllib3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "urllib3==1.26.18" } }, "grpc_python_dependencies_311_wheel": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "wheel==0.38.1" } }, "grpc_python_dependencies_311_wrapt": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "wrapt==1.16.0" } }, "grpc_python_dependencies_311_zipp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "zipp==3.17.0" } }, "grpc_python_dependencies_311_zope_event": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "zope.event==4.5.0" } }, "grpc_python_dependencies_311_zope_interface": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "grpc_python_dependencies_311", "requirement": "zope.interface==6.1" } }, "grpc_python_dependencies_312_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "absl-py==1.4.0" } }, "grpc_python_dependencies_312_cachetools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "cachetools==5.3.2" } }, "grpc_python_dependencies_312_certifi": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "certifi==2023.7.22" } }, "grpc_python_dependencies_312_chardet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "chardet==3.0.4" } }, "grpc_python_dependencies_312_charset_normalizer": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "charset-normalizer==3.3.2" } }, "grpc_python_dependencies_312_coverage": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "coverage==4.5.4" } }, "grpc_python_dependencies_312_cython": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "cython==3.0.0" } }, "grpc_python_dependencies_312_deprecated": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "Deprecated==1.2.14" } }, "grpc_python_dependencies_312_gevent": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "gevent==22.08.0" } }, "grpc_python_dependencies_312_google_api_core": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "google-api-core==1.34.1" } }, "grpc_python_dependencies_312_google_auth": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "google-auth==2.23.4" } }, "grpc_python_dependencies_312_google_cloud_monitoring": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "google-cloud-monitoring==2.16.0" } }, "grpc_python_dependencies_312_google_cloud_trace": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "google-cloud-trace==1.11.3" } }, "grpc_python_dependencies_312_googleapis_common_protos": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "googleapis-common-protos==1.63.1" } }, "grpc_python_dependencies_312_greenlet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "greenlet==1.1.3.post0" } }, "grpc_python_dependencies_312_idna": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "idna==2.7" } }, "grpc_python_dependencies_312_importlib_metadata": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "importlib-metadata==6.11.0" } }, "grpc_python_dependencies_312_oauth2client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "oauth2client==4.1.0" } }, "grpc_python_dependencies_312_opencensus_context": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "opencensus-context==0.1.3" } }, "grpc_python_dependencies_312_opentelemetry_api": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "opentelemetry-api==1.25.0" } }, "grpc_python_dependencies_312_opentelemetry_exporter_prometheus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, "grpc_python_dependencies_312_opentelemetry_resourcedetector_gcp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, "grpc_python_dependencies_312_opentelemetry_sdk": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "opentelemetry-sdk==1.25.0" } }, "grpc_python_dependencies_312_opentelemetry_semantic_conventions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, "grpc_python_dependencies_312_prometheus_client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "prometheus_client==0.20.0" } }, "grpc_python_dependencies_312_proto_plus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "proto-plus==1.22.3" } }, "grpc_python_dependencies_312_protobuf": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "protobuf>=5.27.1,<6.0dev" } }, "grpc_python_dependencies_312_pyasn1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "pyasn1==0.5.0" } }, "grpc_python_dependencies_312_pyasn1_modules": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "pyasn1-modules==0.3.0" } }, "grpc_python_dependencies_312_requests": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "requests==2.25.1" } }, "grpc_python_dependencies_312_rsa": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "rsa==4.9" } }, "grpc_python_dependencies_312_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "setuptools==44.1.1" } }, "grpc_python_dependencies_312_typing_extensions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "typing-extensions==4.9.0" } }, "grpc_python_dependencies_312_urllib3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "urllib3==1.26.18" } }, "grpc_python_dependencies_312_wheel": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "wheel==0.38.1" } }, "grpc_python_dependencies_312_wrapt": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "wrapt==1.16.0" } }, "grpc_python_dependencies_312_zipp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "zipp==3.17.0" } }, "grpc_python_dependencies_312_zope_event": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "zope.event==4.5.0" } }, "grpc_python_dependencies_312_zope_interface": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "grpc_python_dependencies_312", "requirement": "zope.interface==6.1" } }, "grpc_python_dependencies_38_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "absl-py==1.4.0" } }, "grpc_python_dependencies_38_cachetools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "cachetools==5.3.2" } }, "grpc_python_dependencies_38_certifi": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "certifi==2023.7.22" } }, "grpc_python_dependencies_38_chardet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "chardet==3.0.4" } }, "grpc_python_dependencies_38_charset_normalizer": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "charset-normalizer==3.3.2" } }, "grpc_python_dependencies_38_coverage": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "coverage==4.5.4" } }, "grpc_python_dependencies_38_cython": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "cython==3.0.0" } }, "grpc_python_dependencies_38_deprecated": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "Deprecated==1.2.14" } }, "grpc_python_dependencies_38_gevent": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "gevent==22.08.0" } }, "grpc_python_dependencies_38_google_api_core": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "google-api-core==1.34.1" } }, "grpc_python_dependencies_38_google_auth": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "google-auth==2.23.4" } }, "grpc_python_dependencies_38_google_cloud_monitoring": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "google-cloud-monitoring==2.16.0" } }, "grpc_python_dependencies_38_google_cloud_trace": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "google-cloud-trace==1.11.3" } }, "grpc_python_dependencies_38_googleapis_common_protos": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "googleapis-common-protos==1.63.1" } }, "grpc_python_dependencies_38_greenlet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "greenlet==1.1.3.post0" } }, "grpc_python_dependencies_38_idna": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "idna==2.7" } }, "grpc_python_dependencies_38_importlib_metadata": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "importlib-metadata==6.11.0" } }, "grpc_python_dependencies_38_oauth2client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "oauth2client==4.1.0" } }, "grpc_python_dependencies_38_opencensus_context": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "opencensus-context==0.1.3" } }, "grpc_python_dependencies_38_opentelemetry_api": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "opentelemetry-api==1.25.0" } }, "grpc_python_dependencies_38_opentelemetry_exporter_prometheus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, "grpc_python_dependencies_38_opentelemetry_resourcedetector_gcp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, "grpc_python_dependencies_38_opentelemetry_sdk": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "opentelemetry-sdk==1.25.0" } }, "grpc_python_dependencies_38_opentelemetry_semantic_conventions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, "grpc_python_dependencies_38_prometheus_client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "prometheus_client==0.20.0" } }, "grpc_python_dependencies_38_proto_plus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "proto-plus==1.22.3" } }, "grpc_python_dependencies_38_protobuf": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "protobuf>=5.27.1,<6.0dev" } }, "grpc_python_dependencies_38_pyasn1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "pyasn1==0.5.0" } }, "grpc_python_dependencies_38_pyasn1_modules": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "pyasn1-modules==0.3.0" } }, "grpc_python_dependencies_38_requests": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "requests==2.25.1" } }, "grpc_python_dependencies_38_rsa": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "rsa==4.9" } }, "grpc_python_dependencies_38_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "setuptools==44.1.1" } }, "grpc_python_dependencies_38_typing_extensions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "typing-extensions==4.9.0" } }, "grpc_python_dependencies_38_urllib3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "urllib3==1.26.18" } }, "grpc_python_dependencies_38_wheel": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "wheel==0.38.1" } }, "grpc_python_dependencies_38_wrapt": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "wrapt==1.16.0" } }, "grpc_python_dependencies_38_zipp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "zipp==3.17.0" } }, "grpc_python_dependencies_38_zope_event": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "zope.event==4.5.0" } }, "grpc_python_dependencies_38_zope_interface": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "grpc_python_dependencies_38", "requirement": "zope.interface==6.1" } }, "grpc_python_dependencies_39_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "absl-py==1.4.0" } }, "grpc_python_dependencies_39_cachetools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "cachetools==5.3.2" } }, "grpc_python_dependencies_39_certifi": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "certifi==2023.7.22" } }, "grpc_python_dependencies_39_chardet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "chardet==3.0.4" } }, "grpc_python_dependencies_39_charset_normalizer": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "charset-normalizer==3.3.2" } }, "grpc_python_dependencies_39_coverage": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "coverage==4.5.4" } }, "grpc_python_dependencies_39_cython": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "cython==3.0.0" } }, "grpc_python_dependencies_39_deprecated": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "Deprecated==1.2.14" } }, "grpc_python_dependencies_39_gevent": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "gevent==22.08.0" } }, "grpc_python_dependencies_39_google_api_core": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "google-api-core==1.34.1" } }, "grpc_python_dependencies_39_google_auth": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "google-auth==2.23.4" } }, "grpc_python_dependencies_39_google_cloud_monitoring": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "google-cloud-monitoring==2.16.0" } }, "grpc_python_dependencies_39_google_cloud_trace": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "google-cloud-trace==1.11.3" } }, "grpc_python_dependencies_39_googleapis_common_protos": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "googleapis-common-protos==1.63.1" } }, "grpc_python_dependencies_39_greenlet": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "greenlet==1.1.3.post0" } }, "grpc_python_dependencies_39_idna": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "idna==2.7" } }, "grpc_python_dependencies_39_importlib_metadata": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "importlib-metadata==6.11.0" } }, "grpc_python_dependencies_39_oauth2client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "oauth2client==4.1.0" } }, "grpc_python_dependencies_39_opencensus_context": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "opencensus-context==0.1.3" } }, "grpc_python_dependencies_39_opentelemetry_api": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "opentelemetry-api==1.25.0" } }, "grpc_python_dependencies_39_opentelemetry_exporter_prometheus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "opentelemetry-exporter-prometheus==0.46b0" } }, "grpc_python_dependencies_39_opentelemetry_resourcedetector_gcp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "opentelemetry-resourcedetector-gcp==1.6.0a0" } }, "grpc_python_dependencies_39_opentelemetry_sdk": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "opentelemetry-sdk==1.25.0" } }, "grpc_python_dependencies_39_opentelemetry_semantic_conventions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "opentelemetry-semantic-conventions==0.46b0" } }, "grpc_python_dependencies_39_prometheus_client": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "prometheus_client==0.20.0" } }, "grpc_python_dependencies_39_proto_plus": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "proto-plus==1.22.3" } }, "grpc_python_dependencies_39_protobuf": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "protobuf>=5.27.1,<6.0dev" } }, "grpc_python_dependencies_39_pyasn1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "pyasn1==0.5.0" } }, "grpc_python_dependencies_39_pyasn1_modules": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "pyasn1-modules==0.3.0" } }, "grpc_python_dependencies_39_requests": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "requests==2.25.1" } }, "grpc_python_dependencies_39_rsa": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "rsa==4.9" } }, "grpc_python_dependencies_39_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "setuptools==44.1.1" } }, "grpc_python_dependencies_39_typing_extensions": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "typing-extensions==4.9.0" } }, "grpc_python_dependencies_39_urllib3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "urllib3==1.26.18" } }, "grpc_python_dependencies_39_wheel": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "wheel==0.38.1" } }, "grpc_python_dependencies_39_wrapt": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "wrapt==1.16.0" } }, "grpc_python_dependencies_39_zipp": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "zipp==3.17.0" } }, "grpc_python_dependencies_39_zope_event": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "zope.event==4.5.0" } }, "grpc_python_dependencies_39_zope_interface": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@grpc_python_dependencies//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "grpc_python_dependencies_39", "requirement": "zope.interface==6.1" } }, "pip_deps_310_numpy": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "pip_deps_310", "requirement": "numpy<=1.26.1" } }, "pip_deps_310_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "pip_deps_310", "requirement": "setuptools<=70.3.0" } }, "pip_deps_311_numpy": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "pip_deps_311", "requirement": "numpy<=1.26.1" } }, "pip_deps_311_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "pip_deps_311", "requirement": "setuptools<=70.3.0" } }, "pip_deps_312_numpy": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "pip_deps_312", "requirement": "numpy<=1.26.1" } }, "pip_deps_312_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "pip_deps_312", "requirement": "setuptools<=70.3.0" } }, "pip_deps_38_numpy": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "pip_deps_38", "requirement": "numpy<=1.26.1" } }, "pip_deps_38_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "pip_deps_38", "requirement": "setuptools<=70.3.0" } }, "pip_deps_39_numpy": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "pip_deps_39", "requirement": "numpy<=1.26.1" } }, "pip_deps_39_setuptools": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@pip_deps//{name}:{target}", - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "pip_deps_39", "requirement": "setuptools<=70.3.0" } }, "rules_fuzzing_py_deps_310_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "rules_fuzzing_py_deps_310", "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, "rules_fuzzing_py_deps_310_six": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_10_host//:python", "repo": "rules_fuzzing_py_deps_310", "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, "rules_fuzzing_py_deps_311_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_fuzzing_py_deps_311", "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, "rules_fuzzing_py_deps_311_six": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_fuzzing_py_deps_311", "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, "rules_fuzzing_py_deps_312_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "rules_fuzzing_py_deps_312", "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, "rules_fuzzing_py_deps_312_six": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", "repo": "rules_fuzzing_py_deps_312", "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, "rules_fuzzing_py_deps_38_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "rules_fuzzing_py_deps_38", "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, "rules_fuzzing_py_deps_38_six": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_8_host//:python", "repo": "rules_fuzzing_py_deps_38", "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, "rules_fuzzing_py_deps_39_absl_py": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "rules_fuzzing_py_deps_39", "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3" } }, "rules_fuzzing_py_deps_39_six": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_fuzzing_py_deps//{name}:{target}", "extra_pip_args": [ "--require-hashes" ], - "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_9_host//:python", "repo": "rules_fuzzing_py_deps_39", "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } }, "rules_python_publish_deps_311_backports_tarfile_py3_none_any_77e284d7": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4071,7 +7667,7 @@ "cp311_windows_x86_64" ], "filename": "backports.tarfile-1.2.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "backports-tarfile==1.2.0", "sha256": "77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34", @@ -4081,7 +7677,8 @@ } }, "rules_python_publish_deps_311_backports_tarfile_sdist_d75e02c2": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4099,7 +7696,7 @@ "https://pypi.org/simple" ], "filename": "backports_tarfile-1.2.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "backports-tarfile==1.2.0", "sha256": "d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991", @@ -4109,7 +7706,8 @@ } }, "rules_python_publish_deps_311_certifi_py3_none_any_922820b5": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4123,7 +7721,7 @@ "cp311_windows_x86_64" ], "filename": "certifi-2024.8.30-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "certifi==2024.8.30", "sha256": "922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", @@ -4133,7 +7731,8 @@ } }, "rules_python_publish_deps_311_certifi_sdist_bec941d2": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4151,7 +7750,7 @@ "https://pypi.org/simple" ], "filename": "certifi-2024.8.30.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "certifi==2024.8.30", "sha256": "bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9", @@ -4161,7 +7760,8 @@ } }, "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_a1ed2dd2": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4172,7 +7772,7 @@ "cp311_linux_x86_64" ], "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", @@ -4182,7 +7782,8 @@ } }, "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_46bf4316": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4193,7 +7794,7 @@ "cp311_linux_x86_64" ], "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", @@ -4203,7 +7804,8 @@ } }, "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_s390x_a24ed04c": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4214,7 +7816,7 @@ "cp311_linux_x86_64" ], "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", @@ -4224,7 +7826,8 @@ } }, "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_610faea7": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4235,7 +7838,7 @@ "cp311_linux_x86_64" ], "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", @@ -4245,7 +7848,8 @@ } }, "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_aarch64_a9b15d49": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4256,7 +7860,7 @@ "cp311_linux_x86_64" ], "filename": "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", @@ -4266,7 +7870,8 @@ } }, "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_fc48c783": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4277,7 +7882,7 @@ "cp311_linux_x86_64" ], "filename": "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", @@ -4287,7 +7892,8 @@ } }, "rules_python_publish_deps_311_cffi_sdist_1c39c601": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4302,7 +7908,7 @@ "https://pypi.org/simple" ], "filename": "cffi-1.17.1.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cffi==1.17.1", "sha256": "1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", @@ -4312,7 +7918,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0d99dd8f": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4326,7 +7933,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c", @@ -4336,7 +7943,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_c57516e5": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4350,7 +7958,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944", @@ -4360,7 +7968,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_6dba5d19": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4374,7 +7983,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee", @@ -4384,7 +7993,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_bf4475b8": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4398,7 +8008,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c", @@ -4408,7 +8018,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_ce031db0": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4422,7 +8033,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6", @@ -4432,7 +8043,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8ff4e7cd": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4446,7 +8058,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea", @@ -4456,7 +8068,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_3710a975": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4470,7 +8083,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc", @@ -4480,7 +8093,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_aarch64_47334db7": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4494,7 +8108,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594", @@ -4504,7 +8118,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_ppc64le_f1a2f519": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4518,7 +8133,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365", @@ -4528,7 +8143,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_s390x_63bc5c4a": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4542,7 +8158,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129", @@ -4552,7 +8168,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_x86_64_bcb4f8ea": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4566,7 +8183,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236", @@ -4576,7 +8193,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_cee4373f": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4590,7 +8208,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27", @@ -4600,7 +8218,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_py3_none_any_fe9f97fe": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4614,7 +8233,7 @@ "cp311_windows_x86_64" ], "filename": "charset_normalizer-3.4.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079", @@ -4624,7 +8243,8 @@ } }, "rules_python_publish_deps_311_charset_normalizer_sdist_223217c3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4642,7 +8262,7 @@ "https://pypi.org/simple" ], "filename": "charset_normalizer-3.4.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "charset-normalizer==3.4.0", "sha256": "223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e", @@ -4652,7 +8272,8 @@ } }, "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_aarch64_846da004": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4663,7 +8284,7 @@ "cp311_linux_x86_64" ], "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5", @@ -4673,7 +8294,8 @@ } }, "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_x86_64_0f996e72": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4684,7 +8306,7 @@ "cp311_linux_x86_64" ], "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4", @@ -4694,7 +8316,8 @@ } }, "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_aarch64_f7b178f1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4705,7 +8328,7 @@ "cp311_linux_x86_64" ], "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7", @@ -4715,7 +8338,8 @@ } }, "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_x86_64_c2e6fc39": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4726,7 +8350,7 @@ "cp311_linux_x86_64" ], "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405", @@ -4736,7 +8360,8 @@ } }, "rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_aarch64_e1be4655": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4747,7 +8372,7 @@ "cp311_linux_x86_64" ], "filename": "cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16", @@ -4757,7 +8382,8 @@ } }, "rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_x86_64_df6b6c6d": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4768,7 +8394,7 @@ "cp311_linux_x86_64" ], "filename": "cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73", @@ -4778,7 +8404,8 @@ } }, "rules_python_publish_deps_311_cryptography_sdist_315b9001": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4793,7 +8420,7 @@ "https://pypi.org/simple" ], "filename": "cryptography-43.0.3.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "cryptography==43.0.3", "sha256": "315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805", @@ -4803,7 +8430,8 @@ } }, "rules_python_publish_deps_311_docutils_py3_none_any_dafca5b9": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4817,7 +8445,7 @@ "cp311_windows_x86_64" ], "filename": "docutils-0.21.2-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "docutils==0.21.2", "sha256": "dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", @@ -4827,7 +8455,8 @@ } }, "rules_python_publish_deps_311_docutils_sdist_3a6b1873": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4845,7 +8474,7 @@ "https://pypi.org/simple" ], "filename": "docutils-0.21.2.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "docutils==0.21.2", "sha256": "3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", @@ -4855,7 +8484,8 @@ } }, "rules_python_publish_deps_311_idna_py3_none_any_946d195a": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4869,7 +8499,7 @@ "cp311_windows_x86_64" ], "filename": "idna-3.10-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "idna==3.10", "sha256": "946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", @@ -4879,7 +8509,8 @@ } }, "rules_python_publish_deps_311_idna_sdist_12f65c9b": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4897,7 +8528,7 @@ "https://pypi.org/simple" ], "filename": "idna-3.10.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "idna==3.10", "sha256": "12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", @@ -4907,7 +8538,8 @@ } }, "rules_python_publish_deps_311_importlib_metadata_py3_none_any_45e54197": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4921,7 +8553,7 @@ "cp311_windows_x86_64" ], "filename": "importlib_metadata-8.5.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "importlib-metadata==8.5.0", "sha256": "45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b", @@ -4931,7 +8563,8 @@ } }, "rules_python_publish_deps_311_importlib_metadata_sdist_71522656": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4949,7 +8582,7 @@ "https://pypi.org/simple" ], "filename": "importlib_metadata-8.5.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "importlib-metadata==8.5.0", "sha256": "71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7", @@ -4959,7 +8592,8 @@ } }, "rules_python_publish_deps_311_jaraco_classes_py3_none_any_f662826b": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -4973,7 +8607,7 @@ "cp311_windows_x86_64" ], "filename": "jaraco.classes-3.4.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jaraco-classes==3.4.0", "sha256": "f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790", @@ -4983,7 +8617,8 @@ } }, "rules_python_publish_deps_311_jaraco_classes_sdist_47a024b5": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5001,7 +8636,7 @@ "https://pypi.org/simple" ], "filename": "jaraco.classes-3.4.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jaraco-classes==3.4.0", "sha256": "47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd", @@ -5011,7 +8646,8 @@ } }, "rules_python_publish_deps_311_jaraco_context_py3_none_any_f797fc48": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5025,7 +8661,7 @@ "cp311_windows_x86_64" ], "filename": "jaraco.context-6.0.1-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jaraco-context==6.0.1", "sha256": "f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4", @@ -5035,7 +8671,8 @@ } }, "rules_python_publish_deps_311_jaraco_context_sdist_9bae4ea5": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5053,7 +8690,7 @@ "https://pypi.org/simple" ], "filename": "jaraco_context-6.0.1.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jaraco-context==6.0.1", "sha256": "9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3", @@ -5063,7 +8700,8 @@ } }, "rules_python_publish_deps_311_jaraco_functools_py3_none_any_ad159f13": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5077,7 +8715,7 @@ "cp311_windows_x86_64" ], "filename": "jaraco.functools-4.1.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jaraco-functools==4.1.0", "sha256": "ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649", @@ -5087,7 +8725,8 @@ } }, "rules_python_publish_deps_311_jaraco_functools_sdist_70f7e0e2": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5105,7 +8744,7 @@ "https://pypi.org/simple" ], "filename": "jaraco_functools-4.1.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jaraco-functools==4.1.0", "sha256": "70f7e0e2ae076498e212562325e805204fc092d7b4c17e0e86c959e249701a9d", @@ -5115,7 +8754,8 @@ } }, "rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5126,7 +8766,7 @@ "cp311_linux_x86_64" ], "filename": "jeepney-0.8.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jeepney==0.8.0", "sha256": "c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755", @@ -5136,7 +8776,8 @@ } }, "rules_python_publish_deps_311_jeepney_sdist_5efe48d2": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5151,7 +8792,7 @@ "https://pypi.org/simple" ], "filename": "jeepney-0.8.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "jeepney==0.8.0", "sha256": "5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", @@ -5161,7 +8802,8 @@ } }, "rules_python_publish_deps_311_keyring_py3_none_any_5426f817": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5175,7 +8817,7 @@ "cp311_windows_x86_64" ], "filename": "keyring-25.4.1-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "keyring==25.4.1", "sha256": "5426f817cf7f6f007ba5ec722b1bcad95a75b27d780343772ad76b17cb47b0bf", @@ -5185,7 +8827,8 @@ } }, "rules_python_publish_deps_311_keyring_sdist_b07ebc55": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5203,7 +8846,7 @@ "https://pypi.org/simple" ], "filename": "keyring-25.4.1.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "keyring==25.4.1", "sha256": "b07ebc55f3e8ed86ac81dd31ef14e81ace9dd9c3d4b5d77a6e9a2016d0d71a1b", @@ -5213,7 +8856,8 @@ } }, "rules_python_publish_deps_311_markdown_it_py_py3_none_any_35521684": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5227,7 +8871,7 @@ "cp311_windows_x86_64" ], "filename": "markdown_it_py-3.0.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "markdown-it-py==3.0.0", "sha256": "355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", @@ -5237,7 +8881,8 @@ } }, "rules_python_publish_deps_311_markdown_it_py_sdist_e3f60a94": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5255,7 +8900,7 @@ "https://pypi.org/simple" ], "filename": "markdown-it-py-3.0.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "markdown-it-py==3.0.0", "sha256": "e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", @@ -5265,7 +8910,8 @@ } }, "rules_python_publish_deps_311_mdurl_py3_none_any_84008a41": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5279,7 +8925,7 @@ "cp311_windows_x86_64" ], "filename": "mdurl-0.1.2-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "mdurl==0.1.2", "sha256": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", @@ -5289,7 +8935,8 @@ } }, "rules_python_publish_deps_311_mdurl_sdist_bb413d29": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5307,7 +8954,7 @@ "https://pypi.org/simple" ], "filename": "mdurl-0.1.2.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "mdurl==0.1.2", "sha256": "bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", @@ -5317,7 +8964,8 @@ } }, "rules_python_publish_deps_311_more_itertools_py3_none_any_037b0d32": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5331,7 +8979,7 @@ "cp311_windows_x86_64" ], "filename": "more_itertools-10.5.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "more-itertools==10.5.0", "sha256": "037b0d3203ce90cca8ab1defbbdac29d5f993fc20131f3664dc8d6acfa872aef", @@ -5341,7 +8989,8 @@ } }, "rules_python_publish_deps_311_more_itertools_sdist_5482bfef": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5359,7 +9008,7 @@ "https://pypi.org/simple" ], "filename": "more-itertools-10.5.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "more-itertools==10.5.0", "sha256": "5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6", @@ -5369,7 +9018,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_14c5a72e": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5383,7 +9033,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86", @@ -5393,7 +9043,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_7b7c2a3c": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5407,7 +9058,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811", @@ -5417,7 +9068,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_aarch64_42c64511": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5431,7 +9083,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200", @@ -5441,7 +9093,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_armv7l_0411beb0": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5455,7 +9108,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164", @@ -5465,7 +9118,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64_5f36b271": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5479,7 +9133,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189", @@ -5489,7 +9143,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64le_34c03fa7": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5503,7 +9158,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad", @@ -5513,7 +9168,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_s390x_19aaba96": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5527,7 +9183,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b", @@ -5537,7 +9193,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_x86_64_de3ceed6": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5551,7 +9208,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307", @@ -5561,7 +9218,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_aarch64_f0eca9ca": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5575,7 +9233,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe", @@ -5585,7 +9243,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_armv7l_3a157ab1": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5599,7 +9258,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a", @@ -5609,7 +9268,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_x86_64_36c95d4b": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5623,7 +9283,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204", @@ -5633,7 +9293,8 @@ } }, "rules_python_publish_deps_311_nh3_cp37_abi3_win_amd64_8ce0f819": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5647,7 +9308,7 @@ "cp311_windows_x86_64" ], "filename": "nh3-0.2.18-cp37-abi3-win_amd64.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844", @@ -5657,7 +9318,8 @@ } }, "rules_python_publish_deps_311_nh3_sdist_94a16692": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5675,7 +9337,7 @@ "https://pypi.org/simple" ], "filename": "nh3-0.2.18.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "nh3==0.2.18", "sha256": "94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4", @@ -5685,7 +9347,8 @@ } }, "rules_python_publish_deps_311_pkginfo_py3_none_any_889a6da2": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5699,7 +9362,7 @@ "cp311_windows_x86_64" ], "filename": "pkginfo-1.10.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pkginfo==1.10.0", "sha256": "889a6da2ed7ffc58ab5b900d888ddce90bce912f2d2de1dc1c26f4cb9fe65097", @@ -5709,7 +9372,8 @@ } }, "rules_python_publish_deps_311_pkginfo_sdist_5df73835": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5727,7 +9391,7 @@ "https://pypi.org/simple" ], "filename": "pkginfo-1.10.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pkginfo==1.10.0", "sha256": "5df73835398d10db79f8eecd5cd86b1f6d29317589ea70796994d49399af6297", @@ -5737,7 +9401,8 @@ } }, "rules_python_publish_deps_311_pycparser_py3_none_any_c3702b6d": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5748,7 +9413,7 @@ "cp311_linux_x86_64" ], "filename": "pycparser-2.22-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pycparser==2.22", "sha256": "c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", @@ -5758,7 +9423,8 @@ } }, "rules_python_publish_deps_311_pycparser_sdist_491c8be9": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5773,7 +9439,7 @@ "https://pypi.org/simple" ], "filename": "pycparser-2.22.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pycparser==2.22", "sha256": "491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", @@ -5783,7 +9449,8 @@ } }, "rules_python_publish_deps_311_pygments_py3_none_any_b8e6aca0": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5797,7 +9464,7 @@ "cp311_windows_x86_64" ], "filename": "pygments-2.18.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pygments==2.18.0", "sha256": "b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", @@ -5807,7 +9474,8 @@ } }, "rules_python_publish_deps_311_pygments_sdist_786ff802": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5825,7 +9493,7 @@ "https://pypi.org/simple" ], "filename": "pygments-2.18.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pygments==2.18.0", "sha256": "786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", @@ -5835,14 +9503,15 @@ } }, "rules_python_publish_deps_311_pywin32_ctypes_py3_none_any_8a151337": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ "cp311_windows_x86_64" ], "filename": "pywin32_ctypes-0.2.3-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pywin32-ctypes==0.2.3", "sha256": "8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8", @@ -5852,7 +9521,8 @@ } }, "rules_python_publish_deps_311_pywin32_ctypes_sdist_d162dc04": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5863,7 +9533,7 @@ "https://pypi.org/simple" ], "filename": "pywin32-ctypes-0.2.3.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "pywin32-ctypes==0.2.3", "sha256": "d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755", @@ -5873,7 +9543,8 @@ } }, "rules_python_publish_deps_311_readme_renderer_py3_none_any_2fbca89b": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5887,7 +9558,7 @@ "cp311_windows_x86_64" ], "filename": "readme_renderer-44.0-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "readme-renderer==44.0", "sha256": "2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151", @@ -5897,7 +9568,8 @@ } }, "rules_python_publish_deps_311_readme_renderer_sdist_8712034e": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5915,7 +9587,7 @@ "https://pypi.org/simple" ], "filename": "readme_renderer-44.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "readme-renderer==44.0", "sha256": "8712034eabbfa6805cacf1402b4eeb2a73028f72d1166d6f5cb7f9c047c5d1e1", @@ -5925,7 +9597,8 @@ } }, "rules_python_publish_deps_311_requests_py3_none_any_70761cfe": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5939,7 +9612,7 @@ "cp311_windows_x86_64" ], "filename": "requests-2.32.3-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "requests==2.32.3", "sha256": "70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", @@ -5949,7 +9622,8 @@ } }, "rules_python_publish_deps_311_requests_sdist_55365417": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5967,7 +9641,7 @@ "https://pypi.org/simple" ], "filename": "requests-2.32.3.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "requests==2.32.3", "sha256": "55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", @@ -5977,7 +9651,8 @@ } }, "rules_python_publish_deps_311_requests_toolbelt_py2_none_any_cccfdd66": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -5991,7 +9666,7 @@ "cp311_windows_x86_64" ], "filename": "requests_toolbelt-1.0.0-py2.py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "requests-toolbelt==1.0.0", "sha256": "cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", @@ -6001,7 +9676,8 @@ } }, "rules_python_publish_deps_311_requests_toolbelt_sdist_7681a0a3": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6019,7 +9695,7 @@ "https://pypi.org/simple" ], "filename": "requests-toolbelt-1.0.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "requests-toolbelt==1.0.0", "sha256": "7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", @@ -6029,7 +9705,8 @@ } }, "rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6043,7 +9720,7 @@ "cp311_windows_x86_64" ], "filename": "rfc3986-2.0.0-py2.py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "rfc3986==2.0.0", "sha256": "50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", @@ -6053,7 +9730,8 @@ } }, "rules_python_publish_deps_311_rfc3986_sdist_97aacf9d": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6071,7 +9749,7 @@ "https://pypi.org/simple" ], "filename": "rfc3986-2.0.0.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "rfc3986==2.0.0", "sha256": "97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c", @@ -6081,7 +9759,8 @@ } }, "rules_python_publish_deps_311_rich_py3_none_any_9836f509": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6095,7 +9774,7 @@ "cp311_windows_x86_64" ], "filename": "rich-13.9.3-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "rich==13.9.3", "sha256": "9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283", @@ -6105,7 +9784,8 @@ } }, "rules_python_publish_deps_311_rich_sdist_bc1e01b8": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6123,7 +9803,7 @@ "https://pypi.org/simple" ], "filename": "rich-13.9.3.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "rich==13.9.3", "sha256": "bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e", @@ -6133,7 +9813,8 @@ } }, "rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6144,7 +9825,7 @@ "cp311_linux_x86_64" ], "filename": "SecretStorage-3.3.3-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "secretstorage==3.3.3", "sha256": "f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99", @@ -6154,7 +9835,8 @@ } }, "rules_python_publish_deps_311_secretstorage_sdist_2403533e": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6169,7 +9851,7 @@ "https://pypi.org/simple" ], "filename": "SecretStorage-3.3.3.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "secretstorage==3.3.3", "sha256": "2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", @@ -6179,7 +9861,8 @@ } }, "rules_python_publish_deps_311_twine_py3_none_any_215dbe7b": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6193,7 +9876,7 @@ "cp311_windows_x86_64" ], "filename": "twine-5.1.1-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "twine==5.1.1", "sha256": "215dbe7b4b94c2c50a7315c0275d2258399280fbb7d04182c7e55e24b5f93997", @@ -6203,7 +9886,8 @@ } }, "rules_python_publish_deps_311_twine_sdist_9aa08251": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6221,7 +9905,7 @@ "https://pypi.org/simple" ], "filename": "twine-5.1.1.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "twine==5.1.1", "sha256": "9aa0825139c02b3434d913545c7b847a21c835e11597f5255842d457da2322db", @@ -6231,7 +9915,8 @@ } }, "rules_python_publish_deps_311_urllib3_py3_none_any_ca899ca0": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6245,7 +9930,7 @@ "cp311_windows_x86_64" ], "filename": "urllib3-2.2.3-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "urllib3==2.2.3", "sha256": "ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", @@ -6255,7 +9940,8 @@ } }, "rules_python_publish_deps_311_urllib3_sdist_e7d814a8": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6273,7 +9959,7 @@ "https://pypi.org/simple" ], "filename": "urllib3-2.2.3.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "urllib3==2.2.3", "sha256": "e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", @@ -6283,7 +9969,8 @@ } }, "rules_python_publish_deps_311_zipp_py3_none_any_a817ac80": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6297,7 +9984,7 @@ "cp311_windows_x86_64" ], "filename": "zipp-3.20.2-py3-none-any.whl", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "zipp==3.20.2", "sha256": "a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350", @@ -6307,7 +9994,8 @@ } }, "rules_python_publish_deps_311_zipp_sdist_bc9eb26f": { - "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library", + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", "attributes": { "dep_template": "@rules_python_publish_deps//{name}:{target}", "experimental_target_platforms": [ @@ -6325,7 +10013,7 @@ "https://pypi.org/simple" ], "filename": "zipp-3.20.2.tar.gz", - "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python", + "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python", "repo": "rules_python_publish_deps_311", "requirement": "zipp==3.20.2", "sha256": "bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29", @@ -6335,7 +10023,8 @@ } }, "grpc_python_dependencies": { - "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "bzlFile": "@@rules_python~//python/private/pypi:hub_repository.bzl", + "ruleClassName": "hub_repository", "attributes": { "repo_name": "grpc_python_dependencies", "extra_hub_aliases": {}, @@ -6425,7 +10114,8 @@ } }, "pip": { - "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "bzlFile": "@@rules_python~//python/private/pypi:hub_repository.bzl", + "ruleClassName": "hub_repository", "attributes": { "repo_name": "pip", "extra_hub_aliases": {}, @@ -6435,7 +10125,8 @@ } }, "pip_deps": { - "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "bzlFile": "@@rules_python~//python/private/pypi:hub_repository.bzl", + "ruleClassName": "hub_repository", "attributes": { "repo_name": "pip_deps", "extra_hub_aliases": {}, @@ -6451,7 +10142,8 @@ } }, "rules_fuzzing_py_deps": { - "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "bzlFile": "@@rules_python~//python/private/pypi:hub_repository.bzl", + "ruleClassName": "hub_repository", "attributes": { "repo_name": "rules_fuzzing_py_deps", "extra_hub_aliases": {}, @@ -6467,7 +10159,8 @@ } }, "rules_python_publish_deps": { - "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository", + "bzlFile": "@@rules_python~//python/private/pypi:hub_repository.bzl", + "ruleClassName": "hub_repository", "attributes": { "repo_name": "rules_python_publish_deps", "extra_hub_aliases": {}, @@ -6539,134 +10232,134 @@ }, "recordedRepoMappingEntries": [ [ - "bazel_features+", + "bazel_features~", "bazel_features_globals", - "bazel_features++version_extension+bazel_features_globals" + "bazel_features~~version_extension~bazel_features_globals" ], [ - "bazel_features+", + "bazel_features~", "bazel_features_version", - "bazel_features++version_extension+bazel_features_version" + "bazel_features~~version_extension~bazel_features_version" ], [ - "rules_python+", + "rules_python~", "bazel_features", - "bazel_features+" + "bazel_features~" ], [ - "rules_python+", + "rules_python~", "bazel_skylib", - "bazel_skylib+" + "bazel_skylib~" ], [ - "rules_python+", + "rules_python~", "bazel_tools", "bazel_tools" ], [ - "rules_python+", + "rules_python~", "pypi__build", - "rules_python++internal_deps+pypi__build" + "rules_python~~internal_deps~pypi__build" ], [ - "rules_python+", + "rules_python~", "pypi__click", - "rules_python++internal_deps+pypi__click" + "rules_python~~internal_deps~pypi__click" ], [ - "rules_python+", + "rules_python~", "pypi__colorama", - "rules_python++internal_deps+pypi__colorama" + "rules_python~~internal_deps~pypi__colorama" ], [ - "rules_python+", + "rules_python~", "pypi__importlib_metadata", - "rules_python++internal_deps+pypi__importlib_metadata" + "rules_python~~internal_deps~pypi__importlib_metadata" ], [ - "rules_python+", + "rules_python~", "pypi__installer", - "rules_python++internal_deps+pypi__installer" + "rules_python~~internal_deps~pypi__installer" ], [ - "rules_python+", + "rules_python~", "pypi__more_itertools", - "rules_python++internal_deps+pypi__more_itertools" + "rules_python~~internal_deps~pypi__more_itertools" ], [ - "rules_python+", + "rules_python~", "pypi__packaging", - "rules_python++internal_deps+pypi__packaging" + "rules_python~~internal_deps~pypi__packaging" ], [ - "rules_python+", + "rules_python~", "pypi__pep517", - "rules_python++internal_deps+pypi__pep517" + "rules_python~~internal_deps~pypi__pep517" ], [ - "rules_python+", + "rules_python~", "pypi__pip", - "rules_python++internal_deps+pypi__pip" + "rules_python~~internal_deps~pypi__pip" ], [ - "rules_python+", + "rules_python~", "pypi__pip_tools", - "rules_python++internal_deps+pypi__pip_tools" + "rules_python~~internal_deps~pypi__pip_tools" ], [ - "rules_python+", + "rules_python~", "pypi__pyproject_hooks", - "rules_python++internal_deps+pypi__pyproject_hooks" + "rules_python~~internal_deps~pypi__pyproject_hooks" ], [ - "rules_python+", + "rules_python~", "pypi__setuptools", - "rules_python++internal_deps+pypi__setuptools" + "rules_python~~internal_deps~pypi__setuptools" ], [ - "rules_python+", + "rules_python~", "pypi__tomli", - "rules_python++internal_deps+pypi__tomli" + "rules_python~~internal_deps~pypi__tomli" ], [ - "rules_python+", + "rules_python~", "pypi__wheel", - "rules_python++internal_deps+pypi__wheel" + "rules_python~~internal_deps~pypi__wheel" ], [ - "rules_python+", + "rules_python~", "pypi__zipp", - "rules_python++internal_deps+pypi__zipp" + "rules_python~~internal_deps~pypi__zipp" ], [ - "rules_python+", + "rules_python~", "pythons_hub", - "rules_python++python+pythons_hub" + "rules_python~~python~pythons_hub" ], [ - "rules_python++python+pythons_hub", + "rules_python~~python~pythons_hub", "python_3_10_host", - "rules_python++python+python_3_10_host" + "rules_python~~python~python_3_10_host" ], [ - "rules_python++python+pythons_hub", + "rules_python~~python~pythons_hub", "python_3_11_host", - "rules_python++python+python_3_11_host" + "rules_python~~python~python_3_11_host" ], [ - "rules_python++python+pythons_hub", + "rules_python~~python~pythons_hub", "python_3_12_host", - "rules_python++python+python_3_12_host" + "rules_python~~python~python_3_12_host" ], [ - "rules_python++python+pythons_hub", + "rules_python~~python~pythons_hub", "python_3_8_host", - "rules_python++python+python_3_8_host" + "rules_python~~python~python_3_8_host" ], [ - "rules_python++python+pythons_hub", + "rules_python~~python~pythons_hub", "python_3_9_host", - "rules_python++python+python_3_9_host" + "rules_python~~python~python_3_9_host" ] ] } From 3fc0cf6e6294b729944e7e028d64c47771f0f159 Mon Sep 17 00:00:00 2001 From: Jay Conrod Date: Fri, 17 Jan 2025 15:41:58 -0800 Subject: [PATCH 3/5] try committing python/requirements_lock.txt --- .github/workflows/main.yml | 4 --- MODULE.bazel.lock | 68 ++++++++++++++++++++++++++++++++++-- python/requirements_lock.txt | 29 ++++++++++++++- 3 files changed, 93 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8c85a537..148dcc59 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,10 +55,6 @@ jobs: shell: bash run: cp infra/bazelrc .bazelrc.user - - name: Generate python requirements lock - shell: bash - run: bazel run //python:requirements.update - - name: Build and test env: ARCH: ${{ matrix.arch }} diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 96c206bb..bc4699c9 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -5458,7 +5458,7 @@ "usagesDigest": "r5enx2rvTQVGh3OdNhK35pAoR6Z69MhzyGhgMA8uu6Y=", "recordedFileInputs": { "@@rules_python~//tools/publish/requirements_linux.txt": "8175b4c8df50ae2f22d1706961884beeb54e7da27bd2447018314a175981997d", - "@@//python/requirements_lock.txt": "bad677d9662455c9e4bb524334302f07b70b850c99cfb271aede4b7cd1b95cab", + "@@//python/requirements_lock.txt": "4255024debbcbd8faed63cb490d2292710c4157527aa2302a087e656f8d7ae18", "@@grpc~//requirements.bazel.txt": "4c8c19a2a8f22108bf29feb5cc2694eb0c7e0c82ba0364df27fe5f5e4d7936e5", "@@rules_fuzzing~//fuzzing/requirements.txt": "ab04664be026b632a0d2a2446c4f65982b7654f5b6851d2f9d399a19b7242a5b", "@@rules_python~//tools/publish/requirements_windows.txt": "7673adc71dc1a81d3661b90924d7a7c0fc998cd508b3cb4174337cef3f2de556", @@ -7421,6 +7421,56 @@ "requirement": "zope.interface==6.1" } }, + "pip_312_iniconfig": { + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", + "attributes": { + "dep_template": "@pip//{name}:{target}", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", + "repo": "pip_312", + "requirement": "iniconfig==2.0.0 --hash=sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3 --hash=sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" + } + }, + "pip_312_packaging": { + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", + "attributes": { + "dep_template": "@pip//{name}:{target}", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", + "repo": "pip_312", + "requirement": "packaging==24.2 --hash=sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759 --hash=sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + } + }, + "pip_312_pluggy": { + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", + "attributes": { + "dep_template": "@pip//{name}:{target}", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", + "repo": "pip_312", + "requirement": "pluggy==1.5.0 --hash=sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1 --hash=sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" + } + }, + "pip_312_pytest": { + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", + "attributes": { + "dep_template": "@pip//{name}:{target}", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", + "repo": "pip_312", + "requirement": "pytest==8.3.4 --hash=sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6 --hash=sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761" + } + }, + "pip_312_pytest_shard": { + "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", + "ruleClassName": "whl_library", + "attributes": { + "dep_template": "@pip//{name}:{target}", + "python_interpreter_target": "@@rules_python~~python~python_3_12_host//:python", + "repo": "pip_312", + "requirement": "pytest-shard==0.1.2 --hash=sha256:407a1df385cebe1feb9b4d2e7eeee8b044f8a24f0919421233159a17c59be2b9 --hash=sha256:b86a967fbfd1c8e50295095ccda031b7e890862ee06531d5142844f4c1d1cd67" + } + }, "pip_deps_310_numpy": { "bzlFile": "@@rules_python~//python/private/pypi:whl_library.bzl", "ruleClassName": "whl_library", @@ -10119,8 +10169,20 @@ "attributes": { "repo_name": "pip", "extra_hub_aliases": {}, - "whl_map": {}, - "packages": [], + "whl_map": { + "iniconfig": "{\"pip_312_iniconfig\":[{\"version\":\"3.12\"}]}", + "packaging": "{\"pip_312_packaging\":[{\"version\":\"3.12\"}]}", + "pluggy": "{\"pip_312_pluggy\":[{\"version\":\"3.12\"}]}", + "pytest": "{\"pip_312_pytest\":[{\"version\":\"3.12\"}]}", + "pytest_shard": "{\"pip_312_pytest_shard\":[{\"version\":\"3.12\"}]}" + }, + "packages": [ + "iniconfig", + "packaging", + "pluggy", + "pytest", + "pytest_shard" + ], "groups": {} } }, diff --git a/python/requirements_lock.txt b/python/requirements_lock.txt index 92472773..191545c6 100644 --- a/python/requirements_lock.txt +++ b/python/requirements_lock.txt @@ -1 +1,28 @@ -# Run `bazel run //python:requirements.update` to generate this file for your platform. \ No newline at end of file +# +# This file is autogenerated by pip-compile with Python 3.12 +# by the following command: +# +# bazel run //python:requirements.update +# +iniconfig==2.0.0 \ + --hash=sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3 \ + --hash=sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374 + # via pytest +packaging==24.2 \ + --hash=sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759 \ + --hash=sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f + # via pytest +pluggy==1.5.0 \ + --hash=sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1 \ + --hash=sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669 + # via pytest +pytest==8.3.4 \ + --hash=sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6 \ + --hash=sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761 + # via + # -r python/requirements.txt + # pytest-shard +pytest-shard==0.1.2 \ + --hash=sha256:407a1df385cebe1feb9b4d2e7eeee8b044f8a24f0919421233159a17c59be2b9 \ + --hash=sha256:b86a967fbfd1c8e50295095ccda031b7e890862ee06531d5142844f4c1d1cd67 + # via -r python/requirements.txt From d0a8d303efe33212199719e33de4f2b256d91e9b Mon Sep 17 00:00:00 2001 From: Jay Conrod Date: Wed, 22 Jan 2025 11:45:05 -0800 Subject: [PATCH 4/5] use engflowapis-go --- MODULE.bazel | 22 +- go/proto/BUILD | 38 -- go/proto/engflowapis-go.patch | 580 ++++++++++++++++++++++++++++++ go/resourceusage/BUILD | 4 +- go/resourceusage/resourceusage.go | 4 +- 5 files changed, 601 insertions(+), 47 deletions(-) delete mode 100644 go/proto/BUILD create mode 100644 go/proto/engflowapis-go.patch diff --git a/MODULE.bazel b/MODULE.bazel index 599f2147..b814e54b 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -47,6 +47,18 @@ http_archive( bazel_dep(name = "bazel_skylib", version = "1.7.1") bazel_dep(name = "engflowapis-java", version = "2025.01.17-13.50.20") + +# TODO(BZL-7): apply patch upstream and replace this http_archive with a +# plain bazel_dep. +http_archive( + name = "engflowapis-go", + urls = ["https://github.com/EngFlow/engflowapis/releases/download/2025.01.17-16.55.05/engflowapis-2025.01.17-16.55.05.tar.gz"], + sha256 = "ddf8fd5e9fc14520d6182319dcec6a8228e510c37fe4615a53c87fdcb702a99d", + strip_prefix = "go", + patches = ["//go/proto:engflowapis-go.patch"], + patch_args = ["--strip", "1"], +) + bazel_dep(name = "platforms", version = "0.0.10") bazel_dep( name = "protobuf", @@ -69,11 +81,7 @@ bazel_dep(name = "rules_cc", version = "0.0.9") # https://github.com/googleapis/googleapis/pull/855 # https://github.com/bazelbuild/bazel-central-registry/pull/1699 -bazel_dep( - name = "googleapis", - version = "0.0.0-20240326-1c8d509c5", - repo_name = "com_google_googleapis", -) +bazel_dep(name = "googleapis", version = "0.0.0-20240326-1c8d509c5") bazel_dep(name = "engflowapis", version = "2024.11.04-11.10.20") bazel_dep(name = "rules_python", version = "1.0.0") @@ -116,9 +124,13 @@ go_deps.from_file(go_mod = "//:go.mod") use_repo( go_deps, "com_github_google_go_cmp", + # TODO(BZL-7): remove direct dependencies on modules that are only needed + # by the engflowapis-go patch. + "org_golang_google_genproto", "org_golang_google_genproto_googleapis_api", "org_golang_google_genproto_googleapis_rpc", "org_golang_google_grpc", + "org_golang_google_protobuf", ) bazel_dep(name = "rules_java", version = "7.9.1") diff --git a/go/proto/BUILD b/go/proto/BUILD deleted file mode 100644 index 7ccf979d..00000000 --- a/go/proto/BUILD +++ /dev/null @@ -1,38 +0,0 @@ -load("@rules_go//proto:def.bzl", "go_proto_library") - -package(default_visibility = ["//go:__subpackages__"]) - -go_proto_library( - name = "notification_queue_go_proto", - compilers = [ - "@rules_go//proto:go_grpc_v2", - "@rules_go//proto:go_proto", - ], - importpath = "github.com/EngFlow/engflowapis-go/engflow/notification/v1", - protos = ["@engflowapis//engflow/notification/v1"], - deps = [ - ":api_go_proto", - "@org_golang_google_genproto_googleapis_rpc//status", - ], -) - -go_proto_library( - name = "resourceusage_go_proto", - importpath = "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1", - protos = ["@engflowapis//engflow/resourceusage/v1"], - deps = [":type_go_proto"], -) - -go_proto_library( - name = "api_go_proto", - importpath = "github.com/EngFlow/engflowapis-go/engflow/api", - protos = ["@engflowapis//engflow/api"], - deps = [":type_go_proto"], -) - -go_proto_library( - name = "type_go_proto", - importpath = "github.com/EngFlow/engflowapis-go/engflow/type", - protos = ["@engflowapis//engflow/type"], - deps = ["@org_golang_google_genproto_googleapis_api//annotations"], -) diff --git a/go/proto/engflowapis-go.patch b/go/proto/engflowapis-go.patch new file mode 100644 index 00000000..2788cdd0 --- /dev/null +++ b/go/proto/engflowapis-go.patch @@ -0,0 +1,580 @@ +diff -urN a/MODULE.bazel b/MODULE.bazel +--- a/MODULE.bazel 2025-01-22 11:01:41 ++++ b/MODULE.bazel 2025-01-22 11:15:30 +@@ -10,7 +10,6 @@ + bazel_dep( + name = "rules_go", + version = "0.50.1", +- repo_name = "io_bazel_rules_go", + ) + bazel_dep( + name = "gazelle", +@@ -21,20 +20,39 @@ + version = "0.0.0-20240819-fe8ba054a", + ) + +-switched_rules = use_extension("@googleapis//:extensions.bzl", "switched_rules") +-switched_rules.use_languages( +- go = True, +-) +- + go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps") + go_deps.module( + path = "google.golang.org/protobuf", + sum = "h1:yBPeRvTftaleIgM3PZ/WBIZ7XM/eEYAaEyCwvyjq/gk=", + version = "v1.36.1", + ) ++go_deps.module( ++ path = "google.golang.org/genproto", ++ sum = "h1:387Y+JbxF52bmesc8kq1NyYIp33dnxCw6eiA7JMsTmw=", ++ version = "v0.0.0-20250115164207-1a7da9e5054f", ++) ++go_deps.module( ++ path = "google.golang.org/genproto/googleapis/api", ++ sum = "h1:gap6+3Gk41EItBuyi4XX/bp4oqJ3UwuIMl25yGinuAA=", ++ version = "v0.0.0-20250115164207-1a7da9e5054f", ++) ++go_deps.module( ++ path = "google.golang.org/genproto/googleapis/rpc", ++ sum = "h1:OxYkA3wjPsZyBylwymxSHa7ViiW1Sml4ToBrncvFehI=", ++ version = "v0.0.0-20250115164207-1a7da9e5054f", ++) ++go_deps.module( ++ path = "google.golang.org/grpc", ++ sum = "h1:MF5TftSMkd8GLw/m0KM6V8CMOCY6NZ1NQDPGFgbTt4A=", ++ version = "v1.69.4", ++) + use_repo( + go_deps, + "org_golang_google_protobuf", ++ "org_golang_google_genproto", ++ "org_golang_google_genproto_googleapis_api", ++ "org_golang_google_genproto_googleapis_rpc", ++ "org_golang_google_grpc", + ) + + local_path_override( +diff -urN a/engflow/api/BUILD b/engflow/api/BUILD +--- a/engflow/api/BUILD 2025-01-22 11:01:41 ++++ b/engflow/api/BUILD 2025-01-22 11:18:36 +@@ -1,4 +1,4 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "api", +diff -urN a/engflow/auth/BUILD b/engflow/auth/BUILD +--- a/engflow/auth/BUILD 2025-01-22 11:01:41 ++++ b/engflow/auth/BUILD 2025-01-22 11:21:54 +@@ -1,4 +1,4 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "auth", +@@ -9,6 +9,6 @@ + visibility = ["//visibility:public"], + deps = [ + "//engflow/iam/v1", +- "@googleapis//google/api:annotations_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", + ], + ) +diff -urN a/engflow/cluster/v1/BUILD b/engflow/cluster/v1/BUILD +--- a/engflow/cluster/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/cluster/v1/BUILD 2025-01-22 11:37:14 +@@ -1,7 +1,11 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", ++ compilers = [ ++ "@rules_go//proto:go_proto", ++ "@rules_go//proto:go_grpc_v2", ++ ], + importpath = "github.com/EngFlow/engflowapis/go/engflow/cluster/v1", + protos = [ + "@engflowapis//engflow/cluster/v1:cluster", +@@ -10,6 +14,6 @@ + deps = [ + "//engflow/api", + "//engflow/type", +- "@googleapis//google/api:annotations_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", + ], + ) +diff -urN a/engflow/eventstore/v1/BUILD b/engflow/eventstore/v1/BUILD +--- a/engflow/eventstore/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/eventstore/v1/BUILD 2025-01-22 11:38:45 +@@ -1,7 +1,11 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", ++ compilers = [ ++ "@rules_go//proto:go_proto", ++ "@rules_go//proto:go_grpc_v2", ++ ], + importpath = "github.com/EngFlow/engflowapis/go/engflow/eventstore/v1", + protos = [ + "@engflowapis//engflow/eventstore/v1:build_event", +@@ -12,7 +16,7 @@ + deps = [ + "//engflow/api", + "//engflow/auth", +- "@googleapis//google/api:annotations_go_proto", +- "@googleapis//google/devtools/build/v1:build_go_proto", ++ "@org_golang_google_genproto//googleapis/devtools/build/v1:build", ++ "@org_golang_google_genproto_googleapis_api//annotations", + ], + ) +diff -urN a/engflow/iam/authentication/v1/BUILD b/engflow/iam/authentication/v1/BUILD +--- a/engflow/iam/authentication/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/iam/authentication/v1/BUILD 2025-01-22 11:32:13 +@@ -1,4 +1,4 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", +@@ -10,7 +10,7 @@ + deps = [ + "//engflow/iam/v1", + "//engflow/type", +- "@googleapis//google/api:annotations_go_proto", +- "@googleapis//google/rpc:status_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", ++ "@org_golang_google_genproto_googleapis_rpc//status", + ], + ) +diff -urN a/engflow/iam/v1/BUILD b/engflow/iam/v1/BUILD +--- a/engflow/iam/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/iam/v1/BUILD 2025-01-22 11:38:53 +@@ -1,7 +1,11 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", ++ compilers = [ ++ "@rules_go//proto:go_proto", ++ "@rules_go//proto:go_grpc_v2", ++ ], + importpath = "github.com/EngFlow/engflowapis/go/engflow/iam/v1", + protos = [ + "@engflowapis//engflow/iam/v1:identity_and_access_management", +@@ -13,6 +17,6 @@ + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", +- "@googleapis//google/api:annotations_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", + ], + ) +diff -urN a/engflow/notification/v1/BUILD b/engflow/notification/v1/BUILD +--- a/engflow/notification/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/notification/v1/BUILD 2025-01-22 11:38:20 +@@ -1,7 +1,11 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", ++ compilers = [ ++ "@rules_go//proto:go_proto", ++ "@rules_go//proto:go_grpc_v2", ++ ], + importpath = "github.com/EngFlow/engflowapis/go/engflow/notification/v1", + protos = [ + "@engflowapis//engflow/notification/v1:notification", +@@ -10,7 +14,7 @@ + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", +- "@googleapis//google/api:annotations_go_proto", +- "@googleapis//google/rpc:status_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", ++ "@org_golang_google_genproto_googleapis_rpc//status", + ], + ) +diff -urN a/engflow/resourceusage/v1/BUILD b/engflow/resourceusage/v1/BUILD +--- a/engflow/resourceusage/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/resourceusage/v1/BUILD 2025-01-22 11:18:35 +@@ -1,4 +1,4 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", +diff -urN a/engflow/resultstore/v1/BUILD b/engflow/resultstore/v1/BUILD +--- a/engflow/resultstore/v1/BUILD 2025-01-22 11:01:41 ++++ b/engflow/resultstore/v1/BUILD 2025-01-22 11:37:54 +@@ -1,7 +1,11 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "v1", ++ compilers = [ ++ "@rules_go//proto:go_proto", ++ "@rules_go//proto:go_grpc_v2", ++ ], + importpath = "github.com/EngFlow/engflowapis/go/engflow/resultstore/v1", + protos = [ + "@engflowapis//engflow/resultstore/v1:environment", +@@ -12,6 +16,6 @@ + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", +- "@googleapis//google/api:annotations_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", + ], + ) +diff -urN a/engflow/type/BUILD b/engflow/type/BUILD +--- a/engflow/type/BUILD 2025-01-22 11:01:41 ++++ b/engflow/type/BUILD 2025-01-22 11:32:38 +@@ -1,4 +1,4 @@ +-load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") ++load("@rules_go//proto:def.bzl", "go_proto_library") + + go_proto_library( + name = "type", +@@ -12,7 +12,7 @@ + ], + visibility = ["//visibility:public"], + deps = [ +- "@googleapis//google/api:annotations_go_proto", ++ "@org_golang_google_genproto_googleapis_api//annotations", + "@org_golang_google_protobuf//types/known/durationpb", + "@org_golang_google_protobuf//types/known/timestamppb", + ], +diff -urN a/go.mod b/go.mod +--- a/go.mod 1969-12-31 16:00:00 ++++ b/go.mod 2025-01-21 16:09:56 +@@ -0,0 +1,14 @@ ++module github.com/EngFlow/engflowapis/go ++ ++go 1.23.4 ++ ++require ( ++ golang.org/x/net v0.33.0 // indirect ++ golang.org/x/sys v0.28.0 // indirect ++ golang.org/x/text v0.21.0 // indirect ++ google.golang.org/genproto v0.0.0-20250115164207-1a7da9e5054f // indirect ++ google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f // indirect ++ google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect ++ google.golang.org/grpc v1.69.4 // indirect ++ google.golang.org/protobuf v1.36.3 // indirect ++) +diff -urN a/go.sum b/go.sum +--- a/go.sum 1969-12-31 16:00:00 ++++ b/go.sum 2025-01-21 16:10:22 +@@ -0,0 +1,306 @@ ++cel.dev/expr v0.16.2 h1:RwRhoH17VhAu9U5CMvMhH1PDVgf0tuz9FT+24AfMLfU= ++cel.dev/expr v0.16.2/go.mod h1:gXngZQMkWJoSbE8mOzehJlXQyubn/Vg0vR9/F3W7iw8= ++cloud.google.com/go v0.118.0 h1:tvZe1mgqRxpiVa3XlIGMiPcEUbP1gNXELgD4y/IXmeQ= ++cloud.google.com/go v0.118.0/go.mod h1:zIt2pkedt/mo+DQjcT4/L3NDxzHPR29j5HcclNH+9PM= ++cloud.google.com/go/accessapproval v1.8.3 h1:axlU03FRiXDNupsmPG7LKzuS4Enk1gf598M62lWVB74= ++cloud.google.com/go/accessapproval v1.8.3/go.mod h1:3speETyAv63TDrDmo5lIkpVueFkQcQchkiw/TAMbBo4= ++cloud.google.com/go/accesscontextmanager v1.9.3 h1:8zVoeiBa4erMCLEXltOcqVEsZhS26JZ5/Vrgs59eQiI= ++cloud.google.com/go/accesscontextmanager v1.9.3/go.mod h1:S1MEQV5YjkAKBoMekpGrkXKfrBdsi4x6Dybfq6gZ8BU= ++cloud.google.com/go/aiplatform v1.70.0 h1:vnqsPkgcwlDEpWl9t6C3/HLfHeweuGXs2gcYTzH6dMs= ++cloud.google.com/go/aiplatform v1.70.0/go.mod h1:1cewyC4h+yvRs0qVvlCuU3V6j1pJ41doIcroYX3uv8o= ++cloud.google.com/go/analytics v0.25.3 h1:hX6JAsNbXd2uVjqjIuMcKpmhIybKrEunBiGxK4SwEFI= ++cloud.google.com/go/analytics v0.25.3/go.mod h1:pWoYg4yEr0iYg83LZRAicjDDdv54+Z//RyhzWwKbavI= ++cloud.google.com/go/apigateway v1.7.3 h1:Mn7cC5iWJz+cSMS/Hb+N2410CpZ6c8XpJKaexBl0Gxs= ++cloud.google.com/go/apigateway v1.7.3/go.mod h1:uK0iRHdl2rdTe79bHW/bTsKhhXPcFihjUdb7RzhTPf4= ++cloud.google.com/go/apigeeconnect v1.7.3 h1:Wlr+30Tha0SMCvQYZKdrh+HkpOyl0CQFSlzeY/Gg1gs= ++cloud.google.com/go/apigeeconnect v1.7.3/go.mod h1:2ZkT5VCAqhYrDqf4dz7lGp4N/+LeNBSfou8Qs5bIuSg= ++cloud.google.com/go/apigeeregistry v0.9.3 h1:j9CJg/oC884OX5cDpiwNt1ZlDXNV6Zb9Mp1YmRrOG0k= ++cloud.google.com/go/apigeeregistry v0.9.3/go.mod h1:oNCP2VjOeI6U8yuOuTmU4pkffdcXzR5KxeUD71gF+Dg= ++cloud.google.com/go/appengine v1.9.3 h1:jrcanSzj9J1erevZuxldvsDwY+0k/DeFFzlnSfPGfL8= ++cloud.google.com/go/appengine v1.9.3/go.mod h1:DtLsE/z3JufM/pCEIyVYebJ0h9UNPpN64GZQrYgOSyM= ++cloud.google.com/go/area120 v0.9.3 h1:dPQ07rW4eku8OgNWDOaQaVGcE4+XfhH8BSbVwdVQ+wU= ++cloud.google.com/go/area120 v0.9.3/go.mod h1:F3vxS/+hqzrjJo55Xvda3Jznjjbd+4Foo43SN5eMd8M= ++cloud.google.com/go/artifactregistry v1.16.1 h1:ZNXGB6+T7VmWdf6//VqxLdZ/sk0no8W0ujanHeJwDRw= ++cloud.google.com/go/artifactregistry v1.16.1/go.mod h1:sPvFPZhfMavpiongKwfg93EOwJ18Tnj9DIwTU9xWUgs= ++cloud.google.com/go/asset v1.20.4 h1:6oNgjcs5KCPGBD71G0IccK6TfeFsEtBTyQ3Q+Dn09bs= ++cloud.google.com/go/asset v1.20.4/go.mod h1:DP09pZ+SoFWUZyPZx26xVroHk+6+9umnQv+01yfJxbM= ++cloud.google.com/go/assuredworkloads v1.12.3 h1:RU1WhF1zMggdXAZ+ezYTn4Eh/FdiX7sz8lLXGERn4Po= ++cloud.google.com/go/assuredworkloads v1.12.3/go.mod h1:iGBkyMGdtlsxhCi4Ys5SeuvIrPTeI6HeuEJt7qJgJT8= ++cloud.google.com/go/automl v1.14.4 h1:vkD+hQ75SMINMgJBT/KDpFYvfQLzJbtIQZdw0AWq8Rs= ++cloud.google.com/go/automl v1.14.4/go.mod h1:sVfsJ+g46y7QiQXpVs9nZ/h8ntdujHm5xhjHW32b3n4= ++cloud.google.com/go/baremetalsolution v1.3.3 h1:OL+KT+wCumdDhG44aeqGAdkwdT8Wa4Lh+o4INM+CQjw= ++cloud.google.com/go/baremetalsolution v1.3.3/go.mod h1:uF9g08RfmXTF6ZKbXxixy5cGMGFcG6137Z99XjxLOUI= ++cloud.google.com/go/batch v1.11.5 h1:TLfFZJXu+89CGbDK2mMql8f6HHFXarr8uUsaQ6wKatU= ++cloud.google.com/go/batch v1.11.5/go.mod h1:HUxnmZqnkG7zIZuF3NYCfUIrOMU3+SPArR5XA6NGu5s= ++cloud.google.com/go/beyondcorp v1.1.3 h1:ezavJc0Gzh4N8zBskO/DnUVMWPa8lqH/tmQSyaknmCA= ++cloud.google.com/go/beyondcorp v1.1.3/go.mod h1:3SlVKnlczNTSQFuH5SSyLuRd4KaBSc8FH/911TuF/Cc= ++cloud.google.com/go/bigquery v1.65.0 h1:ZZ1EOJMHTYf6R9lhxIXZJic1qBD4/x9loBIS+82moUs= ++cloud.google.com/go/bigquery v1.65.0/go.mod h1:9WXejQ9s5YkTW4ryDYzKXBooL78u5+akWGXgJqQkY6A= ++cloud.google.com/go/bigtable v1.34.0 h1:eIgi3QLcN4aq8p6n9U/zPgmHeBP34sm9FiKq4ik/ZoY= ++cloud.google.com/go/bigtable v1.34.0/go.mod h1:p94uLf6cy6D73POkudMagaFF3x9c7ktZjRnOUVGjZAw= ++cloud.google.com/go/billing v1.20.1 h1:xMlO3hc5BI0s23tRB40bL40xSpxUR1x3E07Y5/VWcjU= ++cloud.google.com/go/billing v1.20.1/go.mod h1:DhT80hUZ9gz5UqaxtK/LNoDELfxH73704VTce+JZqrY= ++cloud.google.com/go/binaryauthorization v1.9.3 h1:X8JRfmk0/vyRqLusEyAPr0nZCK6RKae9omB4lrit0XI= ++cloud.google.com/go/binaryauthorization v1.9.3/go.mod h1:f3xcb/7vWklDoF+q2EaAIS+/A/e1278IgiYxonRX+Jk= ++cloud.google.com/go/certificatemanager v1.9.3 h1:2UP31fg7b+y3F0OmNbPHOKPEJ+6LOMfxAXX4p8xGCy4= ++cloud.google.com/go/certificatemanager v1.9.3/go.mod h1:O5T4Lg/dHbDHLFFooV2Mh/VsT3Mj2CzPEWRo4qw5prc= ++cloud.google.com/go/channel v1.19.2 h1:oHyO3QAZ6kdf6SwqnUTBz50ND6Nk2rxZtboUiF4dgLE= ++cloud.google.com/go/channel v1.19.2/go.mod h1:syX5opXGXFt17DHCyCdbdlM464Tx0gHMi46UlEWY9Gg= ++cloud.google.com/go/cloudbuild v1.19.2 h1:fYsJweKNT1b9cCQHoE3499n1Olr+7z50Ep7jnA+szDs= ++cloud.google.com/go/cloudbuild v1.19.2/go.mod h1:jQbnwL8ewycsWUorJj4e11XNH8Q7ISvuDqlliNVfN7g= ++cloud.google.com/go/clouddms v1.8.3 h1:T/rkkKE0KhQFMcO3+QWL82xakA9kRumLXY1lq5adIts= ++cloud.google.com/go/clouddms v1.8.3/go.mod h1:wn8O2KhhJWcOlQk0pMC7F/4TaJRS5sN6KdNWM8A7o6c= ++cloud.google.com/go/cloudtasks v1.13.3 h1:rXdznKjCa7WpzmvR2plrn2KJ+RZC1oYxPiRWNQjjf3k= ++cloud.google.com/go/cloudtasks v1.13.3/go.mod h1:f9XRvmuFTm3VhIKzkzLCPyINSU3rjjvFUsFVGR5wi24= ++cloud.google.com/go/compute v1.31.1 h1:SObuy8Fs6woazArpXp1fsHCw+ZH4iJ/8dGGTxUhHZQA= ++cloud.google.com/go/compute v1.31.1/go.mod h1:hyOponWhXviDptJCJSoEh89XO1cfv616wbwbkde1/+8= ++cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo= ++cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k= ++cloud.google.com/go/contactcenterinsights v1.17.1 h1:xJoZbX0HM1zht8KxAB38hs2v4Hcl+vXGLo454LrdwxA= ++cloud.google.com/go/contactcenterinsights v1.17.1/go.mod h1:n8OiNv7buLA2AkGVkfuvtW3HU13AdTmEwAlAu46bfxY= ++cloud.google.com/go/container v1.42.1 h1:eaMrgOl6NCk+Blhh29GgUVe3QGo7IiJQlP0w/EwLoV0= ++cloud.google.com/go/container v1.42.1/go.mod h1:5huIxYuOD8Ocuj0KbcyRq9MzB3J1mQObS0KSWHTYceY= ++cloud.google.com/go/containeranalysis v0.13.3 h1:1D8U75BeotZxrG4jR6NYBtOt+uAeBsWhpBZmSYLakQw= ++cloud.google.com/go/containeranalysis v0.13.3/go.mod h1:0SYnagA1Ivb7qPqKNYPkCtphhkJn3IzgaSp3mj+9XAY= ++cloud.google.com/go/datacatalog v1.24.3 h1:3bAfstDB6rlHyK0TvqxEwaeOvoN9UgCs2bn03+VXmss= ++cloud.google.com/go/datacatalog v1.24.3/go.mod h1:Z4g33XblDxWGHngDzcpfeOU0b1ERlDPTuQoYG6NkF1s= ++cloud.google.com/go/dataflow v0.10.3 h1:+7IfIXzYWSybIIDGK9FN2uqBsP/5b/Y0pBYzNhcmKSU= ++cloud.google.com/go/dataflow v0.10.3/go.mod h1:5EuVGDh5Tg4mDePWXMMGAG6QYAQhLNyzxdNQ0A1FfW4= ++cloud.google.com/go/dataform v0.10.3 h1:ZpGkZV8OyhUhvN/tfLffU2ki5ERTtqOunkIaiVAhmw0= ++cloud.google.com/go/dataform v0.10.3/go.mod h1:8SruzxHYCxtvG53gXqDZvZCx12BlsUchuV/JQFtyTCw= ++cloud.google.com/go/datafusion v1.8.3 h1:FTMtsf2nfGGlDCuE84/RvVaCcTIYE7WQSB0noeO0cwI= ++cloud.google.com/go/datafusion v1.8.3/go.mod h1:hyglMzE57KRf0Rf/N2VRPcHCwKfZAAucx+LATY6Jc6Q= ++cloud.google.com/go/datalabeling v0.9.3 h1:PqoA3gnOWaLcHCnqoZe4jh3jmiv6+Z7W2xUUkw/j4jE= ++cloud.google.com/go/datalabeling v0.9.3/go.mod h1:3LDFUgOx+EuNUzDyjU7VElO8L+b5LeaZEFA/ZU1O1XU= ++cloud.google.com/go/dataplex v1.21.0 h1:oswf105Cr2EwHrW2n7wk3nRZQf7hCe3apE/GqJ8yjvY= ++cloud.google.com/go/dataplex v1.21.0/go.mod h1:KXALVHwHdMBhz90IJAUSKh2gK0fEKB6CRjs4f6MrbMU= ++cloud.google.com/go/dataproc/v2 v2.10.1 h1:2vOv471LrcSn91VNzijcH+OkDRLa3kdyymOfKqbwZ4c= ++cloud.google.com/go/dataproc/v2 v2.10.1/go.mod h1:fq+LSN/HYUaaV2EnUPFVPxfe1XpzGVqFnL0TTXs8juk= ++cloud.google.com/go/dataqna v0.9.3 h1:lGUj2FYs650EUPDMV6plWBAoh8qH9Bu1KCz1PUYF2VY= ++cloud.google.com/go/dataqna v0.9.3/go.mod h1:PiAfkXxa2LZYxMnOWVYWz3KgY7txdFg9HEMQPb4u1JA= ++cloud.google.com/go/datastore v1.20.0 h1:NNpXoyEqIJmZFc0ACcwBEaXnmscUpcG4NkKnbCePmiM= ++cloud.google.com/go/datastore v1.20.0/go.mod h1:uFo3e+aEpRfHgtp5pp0+6M0o147KoPaYNaPAKpfh8Ew= ++cloud.google.com/go/datastream v1.12.1 h1:j5cIRYJHjx/058aHa4Slip7fl62UTGHCJc4GL9bxQLQ= ++cloud.google.com/go/datastream v1.12.1/go.mod h1:GxPeRBsokZ8ylxVJBp9Q39QG+z4Iri5QIBRJrKuzJVQ= ++cloud.google.com/go/deploy v1.26.1 h1:Hm3pXBzMFJFPOdwtDkg5e/LP53bXqIpwQpjwsVasjhU= ++cloud.google.com/go/deploy v1.26.1/go.mod h1:PwF9RP0Jh30Qd+I71wb52oM42LgfRKXRMSg87wKpK3I= ++cloud.google.com/go/dialogflow v1.64.1 h1:6fU4IKLpvgpXqiUCE8gUp8eV5u629SCtiyXMudXtZSg= ++cloud.google.com/go/dialogflow v1.64.1/go.mod h1:jkv4vTiGhEUPBzmk1sJ+S1Duu2epCOBNHoWUImHkO5U= ++cloud.google.com/go/dlp v1.20.1 h1:qAEGTTtC97zuDm6YPBozNvy4BLBszVCJah3efNytl3g= ++cloud.google.com/go/dlp v1.20.1/go.mod h1:NO0PLy43RQV0QI6vZcPiNTR9eiKu9pFzawaueBlDwz8= ++cloud.google.com/go/documentai v1.35.1 h1:52RfiUsoblXcE57CfKJGnITWLxRM30BcqNk/BKZl2LI= ++cloud.google.com/go/documentai v1.35.1/go.mod h1:WJjwUAQfwQPJORW8fjz7RODprMULDzEGLA2E6WxenFw= ++cloud.google.com/go/domains v0.10.3 h1:wnqN5YwMrtLSjn+HB2sChgmZ6iocOta4Q41giQsiRjY= ++cloud.google.com/go/domains v0.10.3/go.mod h1:m7sLe18p0PQab56bVH3JATYOJqyRHhmbye6gz7isC7o= ++cloud.google.com/go/edgecontainer v1.4.1 h1:SwQuHQiheVfL7b5ar/AXDberiaqr/yiue8X55AdWnZU= ++cloud.google.com/go/edgecontainer v1.4.1/go.mod h1:ubMQvXSxsvtEjJLyqcPFrdWrHfvjQxdoyt+SUrAi5ek= ++cloud.google.com/go/errorreporting v0.3.2 h1:isaoPwWX8kbAOea4qahcmttoS79+gQhvKsfg5L5AgH8= ++cloud.google.com/go/errorreporting v0.3.2/go.mod h1:s5kjs5r3l6A8UUyIsgvAhGq6tkqyBCUss0FRpsoVTww= ++cloud.google.com/go/essentialcontacts v1.7.3 h1:Paw495vxVyKuAgcQ2NQk09iRZBhPYRytknydEnvzcv4= ++cloud.google.com/go/essentialcontacts v1.7.3/go.mod h1:uimfZgDbhWNCmBpwUUPHe4vcMY2azsq/axC9f7vZFKI= ++cloud.google.com/go/eventarc v1.15.1 h1:RMymT7R87LaxKugOKwooOoheWXUm1NMeOfh3CVU9g54= ++cloud.google.com/go/eventarc v1.15.1/go.mod h1:K2luolBpwaVOujZQyx6wdG4n2Xum4t0q1cMBmY1xVyI= ++cloud.google.com/go/filestore v1.9.3 h1:vTXQI5qYKZ8dmCyHN+zVfaMyXCYbyZNM0CkPzpPUn7Q= ++cloud.google.com/go/filestore v1.9.3/go.mod h1:Me0ZRT5JngT/aZPIKpIK6N4JGMzrFHRtGHd9ayUS4R4= ++cloud.google.com/go/firestore v1.18.0 h1:cuydCaLS7Vl2SatAeivXyhbhDEIR8BDmtn4egDhIn2s= ++cloud.google.com/go/firestore v1.18.0/go.mod h1:5ye0v48PhseZBdcl0qbl3uttu7FIEwEYVaWm0UIEOEU= ++cloud.google.com/go/functions v1.19.3 h1:V0vCHSgFTUqKn57+PUXp1UfQY0/aMkveAw7wXeM3Lq0= ++cloud.google.com/go/functions v1.19.3/go.mod h1:nOZ34tGWMmwfiSJjoH/16+Ko5106x+1Iji29wzrBeOo= ++cloud.google.com/go/gkebackup v1.6.3 h1:djdExe/QgoKdp1gnIO1G5BoO1o/yGQOQJJEZ4QKTEXQ= ++cloud.google.com/go/gkebackup v1.6.3/go.mod h1:JJzGsA8/suXpTDtqI7n9RZW97PXa2CIp+n8aRC/y57k= ++cloud.google.com/go/gkeconnect v0.12.1 h1:YVpR0vlHSP/wD74PXEbKua4Aamud+wiYm4TiewNjD3M= ++cloud.google.com/go/gkeconnect v0.12.1/go.mod h1:L1dhGY8LjINmWfR30vneozonQKRSIi5DWGIHjOqo58A= ++cloud.google.com/go/gkehub v0.15.3 h1:yZ6lNJ9rNIoQmWrG14dB3+BFjS/EIRBf7Bo6jc5QWlE= ++cloud.google.com/go/gkehub v0.15.3/go.mod h1:nzFT/Q+4HdQES/F+FP1QACEEWR9Hd+Sh00qgiH636cU= ++cloud.google.com/go/gkemulticloud v1.5.0 h1:8Z1rWFbnNGgB3KMFbg8OCiIiw2Hl1nxZWwZGU740XRs= ++cloud.google.com/go/gkemulticloud v1.5.0/go.mod h1:mQ5E/lKmQLByqB8koGTU8vij3/pJafxjRygDPH8AHvg= ++cloud.google.com/go/gsuiteaddons v1.7.3 h1:QafYhVhyFGpidBUUlVhy6lUHFogFOycVYm9DV7MinhA= ++cloud.google.com/go/gsuiteaddons v1.7.3/go.mod h1:0rR+LC21v1Sx1Yb6uohHI/F8DF3h2arSJSHvfi3GmyQ= ++cloud.google.com/go/iam v1.3.1 h1:KFf8SaT71yYq+sQtRISn90Gyhyf4X8RGgeAVC8XGf3E= ++cloud.google.com/go/iam v1.3.1/go.mod h1:3wMtuyT4NcbnYNPLMBzYRFiEfjKfJlLVLrisE7bwm34= ++cloud.google.com/go/iap v1.10.3 h1:OWNYFHPyIBNHEAEFdVKOltYWe0g3izSrpFJW6Iidovk= ++cloud.google.com/go/iap v1.10.3/go.mod h1:xKgn7bocMuCFYhzRizRWP635E2LNPnIXT7DW0TlyPJ8= ++cloud.google.com/go/ids v1.5.3 h1:wbFF7twu0XScFr+dtsVxTTttbFIRYt/SJjZiHFidtYE= ++cloud.google.com/go/ids v1.5.3/go.mod h1:a2MX8g18Eqs7yxD/pnEdid42SyBUm9LIzSWf8Jux9OY= ++cloud.google.com/go/iot v1.8.3 h1:aPWYQ+A1NX6ou/5U0nFAiXWdVT8OBxZYVZt2fBl2gWA= ++cloud.google.com/go/iot v1.8.3/go.mod h1:dYhrZh+vUxIQ9m3uajyKRSW7moF/n0rYmA2PhYAkMFE= ++cloud.google.com/go/kms v1.20.5 h1:aQQ8esAIVZ1atdJRxihhdxGQ64/zEbJoJnCz/ydSmKg= ++cloud.google.com/go/kms v1.20.5/go.mod h1:C5A8M1sv2YWYy1AE6iSrnddSG9lRGdJq5XEdBy28Lmw= ++cloud.google.com/go/language v1.14.3 h1:8hmFMiS3wjjj3TX/U1zZYTgzwZoUjDbo9PaqcYEmuB4= ++cloud.google.com/go/language v1.14.3/go.mod h1:hjamj+KH//QzF561ZuU2J+82DdMlFUjmiGVWpovGGSA= ++cloud.google.com/go/lifesciences v0.10.3 h1:Z05C+Ui953f0EQx9hJ1la6+QQl8ADrIs3iNwP5Elkpg= ++cloud.google.com/go/lifesciences v0.10.3/go.mod h1:hnUUFht+KcZcliixAg+iOh88FUwAzDQQt5tWd7iIpNg= ++cloud.google.com/go/logging v1.13.0 h1:7j0HgAp0B94o1YRDqiqm26w4q1rDMH7XNRU34lJXHYc= ++cloud.google.com/go/logging v1.13.0/go.mod h1:36CoKh6KA/M0PbhPKMq6/qety2DCAErbhXT62TuXALA= ++cloud.google.com/go/longrunning v0.6.4 h1:3tyw9rO3E2XVXzSApn1gyEEnH2K9SynNQjMlBi3uHLg= ++cloud.google.com/go/longrunning v0.6.4/go.mod h1:ttZpLCe6e7EXvn9OxpBRx7kZEB0efv8yBO6YnVMfhJs= ++cloud.google.com/go/managedidentities v1.7.3 h1:b9xGs24BIjfyvLgCtJoClOZpPi8d8owPgWe5JEINgaY= ++cloud.google.com/go/managedidentities v1.7.3/go.mod h1:H9hO2aMkjlpY+CNnKWRh+WoQiUIDO8457wWzUGsdtLA= ++cloud.google.com/go/maps v1.17.1 h1:u7U/DieTxYYMDyvHQ00la5ayXLjDImTfnhdAsyPZXyY= ++cloud.google.com/go/maps v1.17.1/go.mod h1:lGZCm2ILmN06GQyrRQwA1rScqQZuApQsCTX+0v+bdm8= ++cloud.google.com/go/mediatranslation v0.9.3 h1:nRBjeaMLipw05Br+qDAlSCcCQAAlat4mvpafztbEVgc= ++cloud.google.com/go/mediatranslation v0.9.3/go.mod h1:KTrFV0dh7duYKDjmuzjM++2Wn6yw/I5sjZQVV5k3BAA= ++cloud.google.com/go/memcache v1.11.3 h1:XH/qT3GbbSH//R0JTqR77lRpBxaa0N9sHgAzfwbTrv0= ++cloud.google.com/go/memcache v1.11.3/go.mod h1:UeWI9cmY7hvjU1EU6dwJcQb6EFG4GaM3KNXOO2OFsbI= ++cloud.google.com/go/metastore v1.14.3 h1:jDqeCw6NGDRAPT9+2Y/EjnWAB0BfCcUfmPLOyhB0eHs= ++cloud.google.com/go/metastore v1.14.3/go.mod h1:HlbGVOvg0ubBLVFRk3Otj3gtuzInuzO/TImOBwsKlG4= ++cloud.google.com/go/monitoring v1.22.1 h1:KQbnAC4IAH+5x3iWuPZT5iN9VXqKMzzOgqcYB6fqPDE= ++cloud.google.com/go/monitoring v1.22.1/go.mod h1:AuZZXAoN0WWWfsSvET1Cpc4/1D8LXq8KRDU87fMS6XY= ++cloud.google.com/go/networkconnectivity v1.16.1 h1:YsVhG71ZC4FkqCP2oCI55x/JeGFyd7738Lt8iNTrzJw= ++cloud.google.com/go/networkconnectivity v1.16.1/go.mod h1:GBC1iOLkblcnhcnfRV92j4KzqGBrEI6tT7LP52nZCTk= ++cloud.google.com/go/networkmanagement v1.17.1 h1:nnOEtE8HGt5zm0SZ0TUTAKAqSQaLdqALW56/0yBoyAg= ++cloud.google.com/go/networkmanagement v1.17.1/go.mod h1:9n6B4wq5zsvr7TRibPP/PhAHPZhEqU6vQDLdvS/4MD8= ++cloud.google.com/go/networksecurity v0.10.3 h1:JLJBFbxc8D7/OS81MyRoKhc2OvnVJxy5VMoQqqAhA7k= ++cloud.google.com/go/networksecurity v0.10.3/go.mod h1:G85ABVcPscEgpw+gcu+HUxNZJWjn3yhTqEU7+SsltFM= ++cloud.google.com/go/notebooks v1.12.3 h1:+9DrGJcZhCu6B2t0JJorekjIUBvg/KvBmXJYGmfvVvA= ++cloud.google.com/go/notebooks v1.12.3/go.mod h1:I0pMxZct+8Rega2LYrXL8jGAGZgLchSmh8Ksc+0xNyA= ++cloud.google.com/go/optimization v1.7.3 h1:JwQjjoBZJpsoMQe/3mhVBMVZuSdagHg2pGOnwh2Jk+E= ++cloud.google.com/go/optimization v1.7.3/go.mod h1:GlYFp4Mju0ybK5FlOUtV6zvWC00TIScdbsPyF6Iv144= ++cloud.google.com/go/orchestration v1.11.3 h1:ug13kXJRdaZO94IgACVF4JwItuVnU0WFbHcJ5Z6ioNs= ++cloud.google.com/go/orchestration v1.11.3/go.mod h1:pbHPtKzHN8EQ8rO4JgmYxMnReqIUMygIlM8uAuG2i5E= ++cloud.google.com/go/orgpolicy v1.14.2 h1:WFvgmjq/FO5GiXlhebltA9N14KdbLMcgG88ME+SWeBo= ++cloud.google.com/go/orgpolicy v1.14.2/go.mod h1:2fTDMT3X048iFKxc6DEgkG+a/gN+68qEgtPrHItKMzo= ++cloud.google.com/go/osconfig v1.14.3 h1:cyf1PMK5c2/WOIr5r2lxjH/XBJMA9P4zC8Tm10i0z3M= ++cloud.google.com/go/osconfig v1.14.3/go.mod h1:9D2MS1Etne18r/mAeW5jtto3toc9H1qu9wLNDG3NvQg= ++cloud.google.com/go/oslogin v1.14.3 h1:yomxnFPk+ye0zd0mJ15nn9fH4Ns7ex4xA3ll+u2q59A= ++cloud.google.com/go/oslogin v1.14.3/go.mod h1:fDEGODTG/W9ZGUTHTlMh8euXWC1fTcgjJ9Kcxxy14a8= ++cloud.google.com/go/phishingprotection v0.9.3 h1:T5mGFV0ggBKg3qt9myFRiGJu+nIUucuHLAtVpAuQ08I= ++cloud.google.com/go/phishingprotection v0.9.3/go.mod h1:ylzN9HruB/X7dD50I4sk+FfYzuPx9fm5JWsYI0t7ncc= ++cloud.google.com/go/policytroubleshooter v1.11.3 h1:ekIWI8JbKkpOfrgH/THGamQE/D16tcVBYJyrkseVcYI= ++cloud.google.com/go/policytroubleshooter v1.11.3/go.mod h1:AFHlORqh4AnMC0twc2yPKfzlozp3DO0yo9OfOd9aNOs= ++cloud.google.com/go/privatecatalog v0.10.4 h1:fu2LABMi7CgZORQ2oNGbc0hoZ0FTqLkjGqIgAV/Kc7U= ++cloud.google.com/go/privatecatalog v0.10.4/go.mod h1:n/vXBT+Wq8B4nSRUJNDsmqla5BYjbVxOlHzS6PjiF+w= ++cloud.google.com/go/pubsub v1.45.3 h1:prYj8EEAAAwkp6WNoGTE4ahe0DgHoyJd5Pbop931zow= ++cloud.google.com/go/pubsub v1.45.3/go.mod h1:cGyloK/hXC4at7smAtxFnXprKEFTqmMXNNd9w+bd94Q= ++cloud.google.com/go/pubsublite v1.8.2 h1:jLQozsEVr+c6tOU13vDugtnaBSUy/PD5zK6mhm+uF1Y= ++cloud.google.com/go/pubsublite v1.8.2/go.mod h1:4r8GSa9NznExjuLPEJlF1VjOPOpgf3IT6k8x/YgaOPI= ++cloud.google.com/go/recaptchaenterprise/v2 v2.19.3 h1:8tyxuDlUnyNsLd3Pf2qfdj6pjwE5UxQCLJdmPX8NIpk= ++cloud.google.com/go/recaptchaenterprise/v2 v2.19.3/go.mod h1:ZnQ14+5i27Vy4iWjiUyKjkFHnkSYZQMBMy1xIp6j2SM= ++cloud.google.com/go/recommendationengine v0.9.3 h1:kBpcYPx4ys4lrDGKp4OhP2uy8h7UjlmLW/qoO5Xb2bY= ++cloud.google.com/go/recommendationengine v0.9.3/go.mod h1:QRnX5aM7DCvtqtSs7I0zay5Zfq3fzxqnsPbZF7pa1G8= ++cloud.google.com/go/recommender v1.13.3 h1:dVlOjxsbjuhlwu4MIcyPWe09qVcDqc419iOjdPl5RHk= ++cloud.google.com/go/recommender v1.13.3/go.mod h1:6yAmcfqJRKglZrVuTHsieTFEm4ai9JtY3nQzmX4TC0Q= ++cloud.google.com/go/redis v1.17.3 h1:ROQXi5dCDSJCVezt/2nD1g+Ym0T6sio3DIzZ56NgMZI= ++cloud.google.com/go/redis v1.17.3/go.mod h1:23OoThXAU5bvhg4/oKsEcdVfq3wmyTEPNA9FP/t9xGo= ++cloud.google.com/go/resourcemanager v1.10.3 h1:SHOMw0kX0xWratC5Vb5VULBeWiGlPYAs82kiZqNtWpM= ++cloud.google.com/go/resourcemanager v1.10.3/go.mod h1:JSQDy1JA3K7wtaFH23FBGld4dMtzqCoOpwY55XYR8gs= ++cloud.google.com/go/resourcesettings v1.8.3 h1:13HOFU7v4cEvIHXSAQbinF4wp2Baybbq7q9FMctg1Ek= ++cloud.google.com/go/resourcesettings v1.8.3/go.mod h1:BzgfXFHIWOOmHe6ZV9+r3OWfpHJgnqXy8jqwx4zTMLw= ++cloud.google.com/go/retail v1.19.2 h1:PT6CUlazIFIOLLJnV+bPBtiSH8iusKZ+FZRzZYFt2vk= ++cloud.google.com/go/retail v1.19.2/go.mod h1:71tRFYAcR4MhrZ1YZzaJxr030LvaZiIcupH7bXfFBcY= ++cloud.google.com/go/run v1.8.1 h1:aeVLygw0BGLH+Zbj8v3K3nEHvKlgoq+j8fcRJaYZtxY= ++cloud.google.com/go/run v1.8.1/go.mod h1:wR5IG8Nujk9pyyNai187K4p8jzSLeqCKCAFBrZ2Sd4c= ++cloud.google.com/go/scheduler v1.11.3 h1:p6+h8BoYJC+TvUijGBfORN6nuhOvJ3EwZ2H84CZ1ZEU= ++cloud.google.com/go/scheduler v1.11.3/go.mod h1:Io2+gcvUjLX1GdymwaSPJ6ZYxHN9/NNGL5kIV3Ax5+Q= ++cloud.google.com/go/secretmanager v1.14.3 h1:XVGHbcXEsbrgi4XHzgK5np81l1eO7O72WOXHhXUemrM= ++cloud.google.com/go/secretmanager v1.14.3/go.mod h1:Pwzcfn69Ni9Lrk1/XBzo1H9+MCJwJ6CDCoeoQUsMN+c= ++cloud.google.com/go/security v1.18.3 h1:ya9gfY1ign6Yy25VMMMgZ9xy7D/TczDB0ElXcyWmEVE= ++cloud.google.com/go/security v1.18.3/go.mod h1:NmlSnEe7vzenMRoTLehUwa/ZTZHDQE59IPRevHcpCe4= ++cloud.google.com/go/securitycenter v1.35.3 h1:H8UvBpcvs1OjI4jZuXX8xsN1IZo88a9PezHXkU2sGps= ++cloud.google.com/go/securitycenter v1.35.3/go.mod h1:kjsA8Eg4jlMHW1JwxbMC8148I+gcjgkWPdbDycatoRQ= ++cloud.google.com/go/servicedirectory v1.12.3 h1:oFkCp6ti7fc7hzeROmOPQuPBHFqwyhcsv3Yrma28+uc= ++cloud.google.com/go/servicedirectory v1.12.3/go.mod h1:dwTKSCYRD6IZMrqoBCIvZek+aOYK/6+jBzOGw8ks5aY= ++cloud.google.com/go/shell v1.8.3 h1:mjYgUsOtV3jl9xvDmcvlRRmA64deEPf52zOfuc68b/g= ++cloud.google.com/go/shell v1.8.3/go.mod h1:OYcrgWF6JSp/uk76sNTtYFlMD0ho2+Cdzc7U3P/bF54= ++cloud.google.com/go/spanner v1.73.0 h1:0bab8QDn6MNj9lNK6XyGAVFhMlhMU2waePPa6GZNoi8= ++cloud.google.com/go/spanner v1.73.0/go.mod h1:mw98ua5ggQXVWwp83yjwggqEmW9t8rjs9Po1ohcUGW4= ++cloud.google.com/go/speech v1.26.0 h1:qvURtJs7BQzQhbxWxwai0pT79S8KLVKJ/4W8igVkt1Y= ++cloud.google.com/go/speech v1.26.0/go.mod h1:78bqDV2SgwFlP/M4n3i3PwLthFq6ta7qmyG6lUV7UCA= ++cloud.google.com/go/storagetransfer v1.12.1 h1:W3v9A7MGBN7H9sAFstyciwP/1XEQhUhZfrjclmDnpMs= ++cloud.google.com/go/storagetransfer v1.12.1/go.mod h1:hQqbfs8/LTmObJyCC0KrlBw8yBJ2bSFlaGila0qBMk4= ++cloud.google.com/go/talent v1.8.0 h1:olv+s2g+LGXeJi+MYF1wI44/TwHaVnO0N7PiucVf5ZQ= ++cloud.google.com/go/talent v1.8.0/go.mod h1:/gvOzSrtMcfTL/9xWhdYaZATaxUNhQ+L+3ZaGOGs7bA= ++cloud.google.com/go/texttospeech v1.11.0 h1:YF/RdNb+jUEp22cIZCvqiFjfA5OxGE+Dxss3mhXU7oQ= ++cloud.google.com/go/texttospeech v1.11.0/go.mod h1:7M2ro3I2QfIEvArFk1TJ+pqXJqhszDtxUpnIv/150As= ++cloud.google.com/go/tpu v1.7.3 h1:PszqG+pvC7u/cv51GWQIN9M++jciIBr5vVn6/MWzU8I= ++cloud.google.com/go/tpu v1.7.3/go.mod h1:jZJET6Hp4VKRFHf+ABHVXW4mq1az4ZYHDLBKb5mYAWE= ++cloud.google.com/go/trace v1.11.3 h1:c+I4YFjxRQjvAhRmSsmjpASUKq88chOX854ied0K/pE= ++cloud.google.com/go/trace v1.11.3/go.mod h1:pt7zCYiDSQjC9Y2oqCsh9jF4GStB/hmjrYLsxRR27q8= ++cloud.google.com/go/translate v1.12.3 h1:XJ7LipYJi80BCgVk2lx1fwc7DIYM6oV2qx1G4IAGQ5w= ++cloud.google.com/go/translate v1.12.3/go.mod h1:qINOVpgmgBnY4YTFHdfVO4nLrSBlpvlIyosqpGEgyEg= ++cloud.google.com/go/video v1.23.3 h1:C2FH+6yr6LCZC4fP0gm9FwJB/SRh5Ul88O5Sc/bL83I= ++cloud.google.com/go/video v1.23.3/go.mod h1:Kvh/BheubZxGZDXSb0iO6YX7ZNcaYHbLjnnaC8Qyy3g= ++cloud.google.com/go/videointelligence v1.12.3 h1:zNTOUQyatGQtnCJ2dR3faRtpWQOlC8wszJqwG5CtwVM= ++cloud.google.com/go/videointelligence v1.12.3/go.mod h1:dUA6V+NH7CVgX6TePq0IelVeBMGzvehxKPR4FGf1dtw= ++cloud.google.com/go/vision/v2 v2.9.3 h1:dPvfDuPqPH+Yscf0f2f1RprvKkoo+N/j0a+IbLYX7Cs= ++cloud.google.com/go/vision/v2 v2.9.3/go.mod h1:weAcT8aNYSgrWWVTC2PuJTc7fcXKvUeAyDq8B6HkLSg= ++cloud.google.com/go/vmmigration v1.8.3 h1:dpCQq3pj2HnKdbvGTftdWymm3r4ovF7JW5z8xBcO2x4= ++cloud.google.com/go/vmmigration v1.8.3/go.mod h1:8CzUpK9eBzohgpL4RvBVtW4sY/sDliVyQonTFQfWcJ4= ++cloud.google.com/go/vmwareengine v1.3.3 h1:TfuQr5j7qriINulUMotaC/+27SQaW2thIkF3Gb6VJ38= ++cloud.google.com/go/vmwareengine v1.3.3/go.mod h1:G7vz05KGijha0c0dj1INRKyDAaQW8TRMZt/FrfOZVXc= ++cloud.google.com/go/vpcaccess v1.8.3 h1:vxVaoFM64M/ht619c4wZNF0iq0QPaMWElOh7Ns4r41A= ++cloud.google.com/go/vpcaccess v1.8.3/go.mod h1:bqOhyeSh/nEmLIsIUoCiQCBHeNPNjaK9M3bIvKxFdsY= ++cloud.google.com/go/webrisk v1.10.3 h1:yh0v/5n49VO4/i9pYfDm1gLJUj1Ph3Xzegn8WvK9YRA= ++cloud.google.com/go/webrisk v1.10.3/go.mod h1:rRAqCA5/EQOX8ZEEF4HMIrLHGTK/Y1hEQgWMnih+jAw= ++cloud.google.com/go/websecurityscanner v1.7.3 h1:/uxhVCWKXzPw5pVfnBOVjaSiQ6Bm0tDExDOCLV40thw= ++cloud.google.com/go/websecurityscanner v1.7.3/go.mod h1:gy0Kmct4GNLoCePWs9xkQym1D7D59ld5AjhXrjipxSs= ++cloud.google.com/go/workflows v1.13.3 h1:lNFDMranJymDEB7cTI7DI9czbc1WU0RWY9KCEv9zuDY= ++cloud.google.com/go/workflows v1.13.3/go.mod h1:Xi7wggEt/ljoEcyk+CB/Oa1AHBCk0T1f5UH/exBB5CE= ++github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.2 h1:cZpsGsWTIFKymTA0je7IIvi1O7Es7apb9CF3EQlOcfE= ++github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.2/go.mod h1:itPGVDKf9cC/ov4MdvJ2QZ0khw4bfoo9jzwTJlaxy2k= ++github.com/census-instrumentation/opencensus-proto v0.4.1 h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g= ++github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= ++github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= ++github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= ++github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78 h1:QVw89YDxXxEe+l8gU8ETbOasdwEV+avkR75ZzsVV9WI= ++github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78/go.mod h1:W+zGtBO5Y1IgJhy4+A9GOqVhqLpfZi+vwmdNXUehLA8= ++github.com/envoyproxy/go-control-plane v0.13.1 h1:vPfJZCkob6yTMEgS+0TwfTUfbHjfy/6vOJ8hUWX/uXE= ++github.com/envoyproxy/go-control-plane v0.13.1/go.mod h1:X45hY0mufo6Fd0KW3rqsGvQMw58jvjymeCzBU3mWyHw= ++github.com/envoyproxy/protoc-gen-validate v1.1.0 h1:tntQDh69XqOCOZsDz0lVJQez/2L6Uu2PdjCQwWCJ3bM= ++github.com/envoyproxy/protoc-gen-validate v1.1.0/go.mod h1:sXRDRVmzEbkM7CVcM06s9shE/m23dg3wzjl0UWqJ2q4= ++github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= ++github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= ++github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= ++github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= ++github.com/golang/glog v1.2.2 h1:1+mZ9upx1Dh6FmUTFR1naJ77miKiXgALjWOZ3NVFPmY= ++github.com/golang/glog v1.2.2/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= ++github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= ++github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= ++github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= ++github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= ++github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= ++github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= ++github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 h1:GFCKgmp0tecUJ0sJuv4pzYCqS9+RGSn52M3FUwPs+uo= ++github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10/go.mod h1:t/avpk3KcrXxUnYOhZhMXJlSEyie6gQbtLq5NM3loB8= ++go.opentelemetry.io/contrib/detectors/gcp v1.31.0 h1:G1JQOreVrfhRkner+l4mrGxmfqYCAuy76asTDAo0xsA= ++go.opentelemetry.io/contrib/detectors/gcp v1.31.0/go.mod h1:tzQL6E1l+iV44YFTkcAeNQqzXUiekSYP9jjJjXwEd00= ++go.opentelemetry.io/otel v1.31.0 h1:NsJcKPIW0D0H3NgzPDHmo0WW6SptzPdqg/L1zsIm2hY= ++go.opentelemetry.io/otel v1.31.0/go.mod h1:O0C14Yl9FgkjqcCZAsE053C13OaddMYr/hz6clDkEJE= ++go.opentelemetry.io/otel/metric v1.31.0 h1:FSErL0ATQAmYHUIzSezZibnyVlft1ybhy4ozRPcF2fE= ++go.opentelemetry.io/otel/metric v1.31.0/go.mod h1:C3dEloVbLuYoX41KpmAhOqNriGbA+qqH6PQ5E5mUfnY= ++go.opentelemetry.io/otel/sdk v1.31.0 h1:xLY3abVHYZ5HSfOg3l2E5LUj2Cwva5Y7yGxnSW9H5Gk= ++go.opentelemetry.io/otel/sdk v1.31.0/go.mod h1:TfRbMdhvxIIr/B2N2LQW2S5v9m3gOQ/08KsbbO5BPT0= ++go.opentelemetry.io/otel/sdk/metric v1.31.0 h1:i9hxxLJF/9kkvfHppyLL55aW7iIJz4JjxTeYusH7zMc= ++go.opentelemetry.io/otel/sdk/metric v1.31.0/go.mod h1:CRInTMVvNhUKgSAMbKyTMxqOBC0zgyxzW55lZzX43Y8= ++go.opentelemetry.io/otel/trace v1.31.0 h1:ffjsj1aRouKewfr85U2aGagJ46+MvodynlQ1HYdmJys= ++go.opentelemetry.io/otel/trace v1.31.0/go.mod h1:TXZkRk7SM2ZQLtR6eoAWQFIHPvzQ06FJAsO1tJg480A= ++golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U= ++golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= ++golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= ++golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= ++golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= ++golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= ++golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= ++golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= ++golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= ++golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= ++golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= ++golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= ++golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q= ++golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= ++golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= ++golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= ++golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg= ++golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= ++golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= ++golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= ++google.golang.org/genproto v0.0.0-20250115164207-1a7da9e5054f h1:387Y+JbxF52bmesc8kq1NyYIp33dnxCw6eiA7JMsTmw= ++google.golang.org/genproto v0.0.0-20250115164207-1a7da9e5054f/go.mod h1:0joYwWwLQh18AOj8zMYeZLjzuqcYTU3/nC5JdCvC3JI= ++google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f h1:gap6+3Gk41EItBuyi4XX/bp4oqJ3UwuIMl25yGinuAA= ++google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f/go.mod h1:Ic02D47M+zbarjYYUlK57y316f2MoN0gjAwI3f2S95o= ++google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f h1:OxYkA3wjPsZyBylwymxSHa7ViiW1Sml4ToBrncvFehI= ++google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f/go.mod h1:+2Yz8+CLJbIfL9z73EW45avw8Lmge3xVElCP9zEKi50= ++google.golang.org/grpc v1.69.4 h1:MF5TftSMkd8GLw/m0KM6V8CMOCY6NZ1NQDPGFgbTt4A= ++google.golang.org/grpc v1.69.4/go.mod h1:vyjdE6jLBI76dgpDojsFGNaHlxdjXN9ghpnd2o7JGZ4= ++google.golang.org/protobuf v1.36.3 h1:82DV7MYdb8anAVi3qge1wSnMDrnKK7ebr+I0hHRN1BU= ++google.golang.org/protobuf v1.36.3/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= diff --git a/go/resourceusage/BUILD b/go/resourceusage/BUILD index d12e448d..c4c1f94d 100644 --- a/go/resourceusage/BUILD +++ b/go/resourceusage/BUILD @@ -6,8 +6,8 @@ go_library( importpath = "github.com/EngFlow/example/go/resourceusage", visibility = ["//visibility:private"], deps = [ - "//go/proto:notification_queue_go_proto", - "//go/proto:resourceusage_go_proto", + "@engflowapis-go//engflow/notification/v1", + "@engflowapis-go//engflow/resourceusage/v1", "@org_golang_google_grpc//:grpc", "@org_golang_google_grpc//codes", "@org_golang_google_grpc//credentials", diff --git a/go/resourceusage/resourceusage.go b/go/resourceusage/resourceusage.go index 0361685e..c8c270c8 100644 --- a/go/resourceusage/resourceusage.go +++ b/go/resourceusage/resourceusage.go @@ -12,8 +12,8 @@ import ( "os/signal" "time" - notificationv1 "github.com/EngFlow/engflowapis-go/engflow/notification/v1" - resourceusagev1 "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1" + notificationv1 "github.com/EngFlow/engflowapis/go/engflow/notification/v1" + resourceusagev1 "github.com/EngFlow/engflowapis/go/engflow/resourceusage/v1" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/credentials" From 4b111da44de225d7d849bc0ed4cc3767feb10e67 Mon Sep 17 00:00:00 2001 From: Jay Conrod Date: Tue, 28 Jan 2025 15:16:19 -0800 Subject: [PATCH 5/5] add empty BUILD file for patch --- go/proto/BUILD | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 go/proto/BUILD diff --git a/go/proto/BUILD b/go/proto/BUILD new file mode 100644 index 00000000..e69de29b