Просмотр исходного кода

chore: pin quicer 0.0.12

quicer (quic.git) 0.0.12 has a build cache enabled which can spped up
the builds
Zaiming (Stone) Shi 3 лет назад
Родитель
Сommit
fa41c9ff35
3 измененных файлов с 3 добавлено и 3 удалено
  1. 1 1
      apps/emqx/rebar.config.script
  2. 1 1
      mix.exs
  3. 1 1
      rebar.config.erl

+ 1 - 1
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.11"}}}.
+Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.12"}}}.
 
 ExtraDeps = fun(C) ->
     {deps, Deps0} = lists:keyfind(deps, 1, C),

+ 1 - 1
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.11", override: true}],
+      do: [{:quicer, github: "emqx/quic", tag: "0.0.12", override: true}],
       else: []
   end
 

+ 1 - 1
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.11"}}}.
+    {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.12"}}}.
 
 jq() ->
     {jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.4"}}}.