Dependency thoas updated from 1.0.0 to 1.2.1
This commit is contained in:
parent
17a3223c94
commit
13bf5c005e
|
@ -224,8 +224,8 @@ erlang_package.hex_package(
|
||||||
erlang_package.hex_package(
|
erlang_package.hex_package(
|
||||||
name = "thoas",
|
name = "thoas",
|
||||||
build_file = "@rabbitmq-server//bazel:BUILD.thoas",
|
build_file = "@rabbitmq-server//bazel:BUILD.thoas",
|
||||||
sha256 = "fc763185b932ecb32a554fb735ee03c3b6b1b31366077a2427d2a97f3bd26735",
|
sha256 = "e38697edffd6e91bd12cea41b155115282630075c2a727e7a6b2947f5408b86a",
|
||||||
version = "1.0.0",
|
version = "1.2.1",
|
||||||
)
|
)
|
||||||
|
|
||||||
erlang_package.hex_package(
|
erlang_package.hex_package(
|
||||||
|
|
|
@ -22,14 +22,9 @@ erlang_bytecode(
|
||||||
"src/thoas_decode.erl",
|
"src/thoas_decode.erl",
|
||||||
"src/thoas_encode.erl",
|
"src/thoas_encode.erl",
|
||||||
],
|
],
|
||||||
outs = [
|
hdrs = [":public_and_private_hdrs"],
|
||||||
"ebin/thoas.beam",
|
|
||||||
"ebin/thoas_decode.beam",
|
|
||||||
"ebin/thoas_encode.beam",
|
|
||||||
],
|
|
||||||
hdrs = [],
|
|
||||||
app_name = "thoas",
|
app_name = "thoas",
|
||||||
beam = [],
|
dest = "ebin",
|
||||||
erlc_opts = "//:erlc_opts",
|
erlc_opts = "//:erlc_opts",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -48,20 +43,11 @@ filegroup(
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
filegroup(
|
filegroup(name = "private_hdrs")
|
||||||
name = "private_hdrs",
|
|
||||||
srcs = [],
|
|
||||||
)
|
|
||||||
|
|
||||||
filegroup(
|
filegroup(name = "public_hdrs")
|
||||||
name = "public_hdrs",
|
|
||||||
srcs = [],
|
|
||||||
)
|
|
||||||
|
|
||||||
filegroup(
|
filegroup(name = "priv")
|
||||||
name = "priv",
|
|
||||||
srcs = [],
|
|
||||||
)
|
|
||||||
|
|
||||||
filegroup(
|
filegroup(
|
||||||
name = "licenses",
|
name = "licenses",
|
||||||
|
@ -87,8 +73,11 @@ filegroup(
|
||||||
erlang_app(
|
erlang_app(
|
||||||
name = "erlang_app",
|
name = "erlang_app",
|
||||||
srcs = [":all_srcs"],
|
srcs = [":all_srcs"],
|
||||||
|
hdrs = [":public_hdrs"],
|
||||||
app_name = "thoas",
|
app_name = "thoas",
|
||||||
beam_files = [":beam_files"],
|
beam_files = [":beam_files"],
|
||||||
|
license_files = [":license_files"],
|
||||||
|
priv = [":priv"],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
|
@ -96,3 +85,10 @@ alias(
|
||||||
actual = ":erlang_app",
|
actual = ":erlang_app",
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "license_files",
|
||||||
|
srcs = [
|
||||||
|
"LICENSE",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
|
@ -55,7 +55,7 @@ dep_ranch = hex 2.1.0
|
||||||
dep_recon = hex 2.5.3
|
dep_recon = hex 2.5.3
|
||||||
dep_redbug = hex 2.0.7
|
dep_redbug = hex 2.0.7
|
||||||
dep_systemd = hex 0.6.1
|
dep_systemd = hex 0.6.1
|
||||||
dep_thoas = hex 1.0.0
|
dep_thoas = hex 1.2.1
|
||||||
dep_observer_cli = hex 1.7.5
|
dep_observer_cli = hex 1.7.5
|
||||||
dep_seshat = git https://github.com/rabbitmq/seshat v0.6.1
|
dep_seshat = git https://github.com/rabbitmq/seshat v0.6.1
|
||||||
dep_stdout_formatter = hex 0.2.4
|
dep_stdout_formatter = hex 0.2.4
|
||||||
|
|
Loading…
Reference in New Issue