We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding the dependency in a rebar3 project using:
{plugins, [rebar_mix]}. {provider_hooks, [ {post, [{compile, {mix, consolidate_protocols}}]} ]}. {deps, [jason]}.
fails due to the error: Dep decimal has invalid version ~> 1.0 or ~> 2.0
Dep decimal has invalid version ~> 1.0 or ~> 2.0
is this a Jason problem or is this a rebar3 problem?
The text was updated successfully, but these errors were encountered:
This looks like a rebar3 problem. ~> 1.0 or ~> 2.0 is a valid version constraint in mix
~> 1.0 or ~> 2.0
Sorry, something went wrong.
This is "fixed" in rebar3 3.23, erlang/rebar3#2840.
No branches or pull requests
adding the dependency in a rebar3 project using:
fails due to the error:
Dep decimal has invalid version ~> 1.0 or ~> 2.0
is this a Jason problem or is this a rebar3 problem?
The text was updated successfully, but these errors were encountered: