Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Convertx.MixProject do
use Mix.Project
def project do
[
app: :convertx,
version: "0.1.0",
elixir: "~> 1.11",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
defp description do
"""
Utils pacakge to convert complex type
"""
end
defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Hoang Nguyen"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/nnhuyhoang/convertx",
"Docs" => "https://hexdocs.pm/convertx/"
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.11", only: :dev},
{:earmark, "~> 0.1", only: :dev},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ecto_sql, "~> 3.4"}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end