Packages

Creates a Unique Identicon when name is given install this git dep {:egd, github: erlang/egd} to work as expected

Current section

Files

Jump to

mix.exs

defmodule Identicon.MixProject do
use Mix.Project
def project do
[
app: :identicon,
version: "0.1.2",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "my_identicon_generation",
source_url: "https://github.com/Santosh1608/Generate-Identicon"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:egd, github: "erlang/egd", only: :dev},
{:ex_doc, "~> 0.21", only: :dev, runtime: false}
]
end
defp description() do
"Creates a Unique Identicon when name is given install this git dep {:egd, github: erlang/egd} to work as expected"
end
defp package() do
[
name: "my_identicon_generation",
licenses: ["Santech"],
links: %{"Github" => "https://github.com/Santosh1608/Generate-Identicon"}
]
end
end