Bazel setup
Paste this snippet into your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rtbot",
sha256 = "76b39514f045a2bfa326e82afac61ce4df9d9495168ca8ec2cd5773978522af1",
strip_prefix = "rtbot-0.3.7",
url = "https://github.com/rtbot-dev/rtbot/releases/download/v0.3.7/rtbot-v0.3.7.tar.gz",
)
load("@rtbot//:deps.bzl", "rtbot_deps" = "deps")
rtbot_deps()
Full Changelog: v0.3.6...v0.3.7