Skip to content

Commit

Permalink
rebar.config: Update relaxed dependency versions for Rebar3
Browse files Browse the repository at this point in the history
  • Loading branch information
badlop committed Apr 22, 2024
1 parent 02ecdc7 commit 2d049fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rebar.config
Expand Up @@ -21,13 +21,13 @@
{i, "include"},
{platform_define, "^(R|1|20)", deprecated_stacktrace}]}.

{deps, [{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", {tag, "1.1.1"}}},
{yconf, ".*", {git, "https://github.com/processone/yconf.git", {tag, "1.0.15"}}},
{idna, ".*", {git, "https://github.com/benoitc/erlang-idna", {tag, "6.0.0"}}},
{base64url, ".*", {git, "https://github.com/dvv/base64url", {tag, "1.0.1"}}},
{deps, [{jiffy, "~> 1.1.1", {git, "https://github.com/davisp/jiffy.git", {tag, "1.1.1"}}},
{yconf, "~> 1.0.15", {git, "https://github.com/processone/yconf.git", {tag, "1.0.15"}}},
{idna, "~> 6.0", {git, "https://github.com/benoitc/erlang-idna", {tag, "6.0.0"}}},
{base64url, "~> 1.0", {git, "https://github.com/dvv/base64url", {tag, "1.0.1"}}},
{if_version_above, "23",
{jose, ".*", {git, "https://github.com/potatosalad/erlang-jose", {tag, "1.11.10"}}},
{jose, ".*", {git, "https://github.com/potatosalad/erlang-jose", {tag, "1.11.1"}}}
{jose, "~> 1.11.10", {git, "https://github.com/potatosalad/erlang-jose", {tag, "1.11.10"}}},
{jose, "1.11.1", {git, "https://github.com/potatosalad/erlang-jose", {tag, "1.11.1"}}}
}]}.

{cover_enabled, true}.
Expand Down

0 comments on commit 2d049fa

Please sign in to comment.