forked from marpaia/alpaca-trade-api-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
26 lines (22 loc) · 1.26 KB
/
MODULE.bazel
File metadata and controls
26 lines (22 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module(name = "com_github_mauriciogg_alpaca_trade_api_cpp", version="")
bazel_dep(name = "cpp-httplib", version = "0.22.0", repo_name = "com_github_yhirose_cpp_httplib")
bazel_dep(name = "boringssl", version = "0.20250701.0", repo_name = "com_github_google_boringssl")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "rapidjson", version = "1.1.0.bcr.20241007", repo_name = "com_github_tencent_rapidjson")
bazel_dep(name = "googletest", version = "1.17.0", repo_name = "com_github_google_googletest")
bazel_dep(name = "glog", version = "0.7.1", repo_name = "com_github_google_glog")
bazel_dep(name = "zlib", version = "1.3.1.bcr.6", repo_name = "com_github_madler_zlib")
bazel_dep(name = "libuv", version = "1.48.0", repo_name = "com_github_libuv_libuv")
# -- bazel_dep definitions -- #
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# -- use_repo_rule statements -- #
http_archive(
name = "com_github_unetworking_uwebsockets",
urls = [
"https://github.com/uNetworking/uWebSockets/archive/v0.14.8.tar.gz"
],
sha256 = "663a22b521c8258e215e34e01c7fcdbbd500296aab2c31d36857228424bb7675",
strip_prefix = "uWebSockets-0.14.8",
build_file = "//bazel/third_party/uwebsockets:BUILD",
)
# -- repo definitions -- #