generated from marpaia/alpaca-cpp-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
21 lines (17 loc) · 944 Bytes
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
workspace(name = "alpaca_cpp_starter_template")
################################################################################
# General Initialization
################################################################################
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
################################################################################
# C++ Dependencies
################################################################################
# alpaca-trade-api-cpp is a C++ client library for the Alpaca Trading API.
http_archive(
name = "com_github_marpaia_alpaca_trade_api_cpp",
strip_prefix = "alpaca-trade-api-cpp-0.0.3",
urls = ["https://github.com/marpaia/alpaca-trade-api-cpp/archive/v0.0.3.tar.gz"],
sha256 = "db9efe3dc92f4e1d7eb69d76cb807af6bcf61ea14fe73f30e22830002b34f81a",
)
load("@com_github_marpaia_alpaca_trade_api_cpp//bazel:deps.bzl", "alpaca_deps")
alpaca_deps()