floof/mix.exs
2022-11-22 17:35:08 +01:00

32 lines
716 B
Elixir

defmodule Floof.MixProject do
use Mix.Project
def project do
[
app: :floof,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
compilers: [:asn1] ++ Mix.compilers(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :asn1],
mod: {Floof.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:asn1ex, git: "https://github.com/vicentfg/asn1ex"},
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end