Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .bazelversion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8.5.1
4 changes: 2 additions & 2 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
with:
path: |
~/.cache/bazel
key: ${{ runner.os }}-${{ hashFiles('.bazelrc', 'MODULE.bazel.lock') }}-${{ github.sha }}
key: ${{ runner.os }}-${{ hashFiles('.bazelrc', '.bazelversion', 'MODULE.bazel.lock') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-${{ hashFiles('.bazelrc', 'MODULE.bazel.lock') }}-
${{ runner.os }}-${{ hashFiles('.bazelrc', '.bazelversion', 'MODULE.bazel.lock') }}-

- name: "Run `bazel build`"
run: |
Expand Down
Empty file added BUILD
Empty file.
16 changes: 8 additions & 8 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ module(
)

bazel_dep(name = "tink_cc", version = "2.4.0", repo_name = "com_github_tink_crypto_tink_cc")
bazel_dep(name = "rules_cc", version = "0.2.9")
bazel_dep(name = "rules_rust", version = "0.67.0")
bazel_dep(name = "protobuf", version = "33.1")
bazel_dep(name = "rules_cc", version = "0.2.14")
bazel_dep(name = "rules_rust", version = "0.68.1")
bazel_dep(name = "protobuf", version = "33.4")
archive_override(
# Patches protobuf to make the Rust libraries visible. See
# https://github.com/protocolbuffers/protobuf/issues/23866.
module_name = "protobuf",
integrity = "sha256-F4n12LZfTcM249HtTdCAw3iK35iU7Ei61GTtjK3cS4Y=",
strip_prefix = "protobuf-9151e03956a34b795ca0d58e19d8a9991904b459",
urls = ["https://github.com/google/protobuf/archive/9151e03956a34b795ca0d58e19d8a9991904b459.zip"],
integrity = "sha256-mvdpd/lyYjQXZikNZrDRgnMHibNK2A3YMQ8+omVYGVk=",
strip_prefix = "protobuf-9ed3f7fb76c3aa2384b6bf3ef5f434896d3db5ab",
urls = ["https://github.com/google/protobuf/archive/9ed3f7fb76c3aa2384b6bf3ef5f434896d3db5ab.zip"],
)

bazel_dep(name = "googletest", version = "1.17.0.bcr.1", repo_name = "com_github_google_googletest")
bazel_dep(name = "googletest", version = "1.17.0.bcr.2", repo_name = "com_github_google_googletest")
bazel_dep(name = "abseil-cpp", version = "20250814.1", repo_name = "com_google_absl")
bazel_dep(name = "boringssl", version = "0.20251002.0")
bazel_dep(name = "glog", version = "0.7.1", repo_name = "com_github_google_glog")
bazel_dep(name = "glog", version = "0.7.1.bcr.1", repo_name = "com_github_google_glog")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "highway", version = "1.3.0", repo_name = "com_github_google_highway")
81 changes: 50 additions & 31 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions shell_encryption/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
load("@protobuf//bazel:proto_library.bzl", "proto_library")
load("@rules_license//rules:license.bzl", "license")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
Expand Down
1 change: 1 addition & 0 deletions shell_encryption/multi_party/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

# Multi-party additive homomorphic encryption protocol

load("@protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
load("@protobuf//bazel:proto_library.bzl", "proto_library")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")
Expand Down
1 change: 1 addition & 0 deletions shell_encryption/rns/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

# RNS extension of the rlwe library

load("@protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
load("@protobuf//bazel:proto_library.bzl", "proto_library")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")
Expand Down
1 change: 1 addition & 0 deletions shell_encryption/testing/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
load("@protobuf//bazel:proto_library.bzl", "proto_library")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")
Expand Down
Loading