Skip to content

Commit

Permalink
build(elixir): pin deps using ==
Browse files Browse the repository at this point in the history
  • Loading branch information
akramhussein committed Apr 3, 2024
1 parent 2bb2339 commit f912bb8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions elixir/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ defmodule VXLParser.MixProject do

defp deps,
do: [
{:jason, "~> 1.0"},
{:rustler_precompiled, "~> 0.7.1"},
{:rustler, "~> 0.30"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.18", only: [:test], runtime: false}
{:jason, "== 1.4.1"},
{:rustler_precompiled, "== 0.7.1"},
{:rustler, "== 0.30.0"},
{:credo, "== 1.7.1", only: [:dev, :test], runtime: false},
{:excoveralls, "== 0.18.0", only: [:test], runtime: false}
]

defp package,
Expand Down

0 comments on commit f912bb8

Please sign in to comment.