forked from TheRealReal/ecto-ulid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
41 lines (37 loc) · 919 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
defmodule Ecto.ULID.Mixfile do
use Mix.Project
def project do
[
app: :ecto_ulid,
version: "0.2.0",
elixir: "~> 1.4",
start_permanent: Mix.env == :prod,
deps: deps(),
name: "Ecto.ULID",
description: "An Ecto.Type implementation of ULID.",
package: package(),
source_url: "https://github.com/TheRealReal/ecto-ulid",
homepage_url: "https://github.com/TheRealReal/ecto-ulid",
docs: [main: "Ecto.ULID"],
]
end
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["David Cuddeback"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/TheRealReal/ecto-ulid"},
]
end
defp deps do
[
{:ecto, "~> 2.0 or ~> 3.0"},
{:benchfella, "~> 0.3.5", only: [:dev, :test]},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
]
end
end