Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
419 B
16 lines
419 B
6 years ago
|
|
||
|
workspace(name = "upb")
|
||
|
|
||
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||
|
|
||
|
http_archive(
|
||
|
name = "lua",
|
||
|
build_file = "//:lua.BUILD",
|
||
|
sha256 = "b9e2e4aad6789b3b63a056d442f7b39f0ecfca3ae0f1fc0ae4e9614401b69f4b",
|
||
|
strip_prefix = "lua-5.2.4",
|
||
|
urls = [
|
||
|
"https://mirror.bazel.build/www.lua.org/ftp/lua-5.2.4.tar.gz",
|
||
|
"https://www.lua.org/ftp/lua-5.2.4.tar.gz",
|
||
|
],
|
||
|
)
|