Skip to content

Commit

Permalink
Allow for newest versions of dev packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Noarkhh committed Dec 17, 2024
1 parent 0850154 commit 8be2a03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ defmodule Membrane.RTP.Opus.Mixfile do
{:membrane_core, "~> 1.0"},
{:membrane_rtp_format, "~> 0.10.0"},
{:membrane_opus_format, "~> 0.3.0"},
{:ex_doc, "~> 0.24.0", only: :dev, runtime: false},
{:credo, "~> 1.6.1", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false}
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
{:credo, ">= 0.0.0", only: :dev, runtime: false}
]
end

Expand Down

0 comments on commit 8be2a03

Please sign in to comment.