13 lines
481 B
Python
13 lines
481 B
Python
"""Loads the nlohmann_json library, used by TF."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "nlohmann_json_lib",
|
|
build_file = "//third_party/nlohmann_json:nlohmann_json.BUILD",
|
|
sha256 = "5daca6ca216495edf89d167f808d1d03c4a4d929cef7da5e10f135ae1540c7e4",
|
|
strip_prefix = "json-3.10.5",
|
|
urls = tf_mirror_urls("https://github.com/nlohmann/json/archive/v3.10.5.tar.gz"),
|
|
)
|