mirror of
https://github.com/sloanelybutsurely/typeid-elixir.git
synced 2024-11-28 01:42:54 -05:00
39 lines
821 B
Elixir
39 lines
821 B
Elixir
defmodule TypeID.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :typeid_elixir,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.15",
|
|
start_permanent: Mix.env() == :prod,
|
|
description: description(),
|
|
package: package(),
|
|
deps: deps(),
|
|
name: "TypeID Elixir",
|
|
source_url: "https://github.com/sloanelybutsurely/typeid-elixir"
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[extra_applications: [:logger]]
|
|
end
|
|
|
|
defp description do
|
|
"A type-safe, K-sortable, globally unique identifier inspired by Stripe IDs"
|
|
end
|
|
|
|
defp package do
|
|
[
|
|
licenses: ["MIT"],
|
|
links: %{"GitHub" => "https://github.com/sloanelybutsurely/typeid-elixir"}
|
|
]
|
|
end
|
|
|
|
defp deps do
|
|
[
|
|
{:uniq, "~> 0.5.4"},
|
|
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
|
|
]
|
|
end
|
|
end
|