Packages

A collection of simple data structures for use in non production settings.

Current section

Files

Jump to

mix.exs

defmodule SimpleDataStructures.MixProject do
use Mix.Project
def project do
[
app: :simple_data_structures,
version: "0.1.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: "https://github.com/rkachowski/simple_data_structures"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"A collection of simple data structures for use in non production settings."
end
defp package do
[
licenses: ["WTFPL"],
links: %{"GitHub" => "https://github.com/rkachowski/simple_data_structures"}
]
end
end