-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
35 lines (30 loc) · 1.06 KB
/
WORKSPACE
File metadata and controls
35 lines (30 loc) · 1.06 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
27
28
29
30
31
32
33
34
35
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# sole (for uuids!)
http_archive(
name = "sole",
build_file = "@//external:sole.BUILD",
strip_prefix = "sole-653a25ad03775d7e0a2d50142160795723915ba6",
urls = ["https://github.com/r-lyeh-archived/sole/archive/653a25ad03775d7e0a2d50142160795723915ba6.zip"],
)
# nlohmann
http_archive(
name = "nlohmann",
build_file = "@//external:nlohmann.BUILD",
strip_prefix = "json-3.3.0",
urls = ["https://github.com/nlohmann/json/archive/v3.3.0.tar.gz"],
)
# Google test
http_archive(
name = "gtest",
strip_prefix = "googletest-release-1.8.1",
urls = ["https://github.com/google/googletest/archive/release-1.8.1.tar.gz"],
)
# Caf dependency
# was 0.17.1
# TODO update to tag as soon as 0.18 released!
http_archive(
name = "libcaf",
build_file = "@//external:libcaf.BUILD",
strip_prefix = "actor-framework-47ebe211f07d31725a3910ed966db1c31192d984",
urls = ["https://github.com/actor-framework/actor-framework/archive/47ebe211f07d31725a3910ed966db1c31192d984.tar.gz"],
)