diff --git a/apps/emqx/rebar.config.script b/apps/emqx/rebar.config.script index c7635a682..3dfe4f1d7 100644 --- a/apps/emqx/rebar.config.script +++ b/apps/emqx/rebar.config.script @@ -24,7 +24,7 @@ IsQuicSupp = fun() -> end, 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.12"}}}. +Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.14"}}}. ExtraDeps = fun(C) -> {deps, Deps0} = lists:keyfind(deps, 1, C), diff --git a/mix.exs b/mix.exs index febf5d4d7..66ce8e9c7 100644 --- a/mix.exs +++ b/mix.exs @@ -591,7 +591,7 @@ defmodule EMQXUmbrella.MixProject do defp quicer_dep() do if enable_quicer?(), # in conflict with emqx and emqtt - do: [{:quicer, github: "emqx/quic", tag: "0.0.12", override: true}], + do: [{:quicer, github: "emqx/quic", tag: "0.0.14", override: true}], else: [] end diff --git a/rebar.config.erl b/rebar.config.erl index e3c579664..006603441 100644 --- a/rebar.config.erl +++ b/rebar.config.erl @@ -38,7 +38,7 @@ 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.12"}}}. + {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.14"}}}. jq() -> {jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.4"}}}.