Packages
To add a package, you need to add a line to
mix.exs
defp deps do
[
#.....
{:plug_cowboy, "~> 2.0"},
{:httpoison, "~> 1.6"}
]
endThen run mix deps.get
Version
# Only version 2.0.0
"== 2.0.0"
# Anything later than 2.0.0
"> 2.0.0"
# 2.0.0 and later until 2.1.0
">= 2.0.0 and < 2.1.0"
# Equivalent to
"~> 2.0.0"Packages of Interest
Genstage, broadway
Last updated