diff --git a/apps/emqx/rebar.config.script b/apps/emqx/rebar.config.script index cb6bab674..2069a8650 100644 --- a/apps/emqx/rebar.config.script +++ b/apps/emqx/rebar.config.script @@ -19,8 +19,8 @@ IsQuicSupp = fun() -> ) end, -Bcrypt = {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {branch, "0.6.0"}}}, -Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {branch, "0.0.9"}}}, +Bcrypt = {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}}, +Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.9"}}}, ExtraDeps = fun(C) -> {deps, Deps0} = lists:keyfind(deps, 1, C), diff --git a/rebar.config.erl b/rebar.config.erl index a3910599e..c7ca66dc4 100644 --- a/rebar.config.erl +++ b/rebar.config.erl @@ -30,7 +30,7 @@ assert_otp() -> end. bcrypt() -> - {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {branch, "0.6.0"}}}. + {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}}. quicer() -> {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.9"}}}.