-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
5,764 additions
and
216 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
############################################################################### | ||
# Bazel now uses Bzlmod by default to manage external dependencies. | ||
# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel. | ||
# | ||
# For more details, please check https://github.com/bazelbuild/bazel/issues/18958 | ||
############################################################################### | ||
|
||
module( | ||
name = "private_join_and_compute", | ||
version = "0.0.1", | ||
) | ||
|
||
bazel_dep(name = "bazel_skylib", version = "1.7.1") | ||
bazel_dep(name = "grpc", version = "1.66.0.bcr.2", repo_name = "com_github_grpc_grpc") | ||
bazel_dep(name = "glog", version = "0.7.1") | ||
bazel_dep(name = "gflags", version = "2.2.2") | ||
bazel_dep(name = "abseil-cpp", version = "20240722.0") | ||
bazel_dep(name = "googletest", version = "1.15.2") | ||
bazel_dep(name = "boringssl", version = "0.20240913.0") | ||
bazel_dep(name = "rules_cc", version = "0.0.16") | ||
bazel_dep(name = "protobuf", version = "29.0") | ||
bazel_dep(name = "rules_proto_grpc", version = "5.0.0") | ||
bazel_dep(name = "rules_proto_grpc_cpp", version = "5.0.0") | ||
bazel_dep(name = "rules_pkg", version = "1.0.1") | ||
bazel_dep(name = "rules_java", version = "8.6.2") | ||
bazel_dep(name = "rules_python", version = "1.0.0") | ||
|
||
# Python | ||
python = use_extension("@rules_python//python/extensions:python.bzl", "python") | ||
python.toolchain( | ||
is_default = True, | ||
python_version = "3.12", | ||
) | ||
use_repo( | ||
python, | ||
# register toolchains | ||
"python_3_12", | ||
# Handy helper for all | ||
"python_versions", | ||
) | ||
|
||
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip") | ||
use_repo(pip, "pjc_pip_deps") | ||
pip.parse( | ||
hub_name = "pjc_pip_deps", | ||
python_version = "3.12", | ||
requirements_lock = "//private_join_and_compute/py/requirements:requirements_lock_3_12.txt", | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.