-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
48 lines (42 loc) · 1.03 KB
/
mix.exs
File metadata and controls
48 lines (42 loc) · 1.03 KB
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
42
43
44
45
46
47
48
defmodule EctoEncryptedId.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/a3kov/ecto_encrypted_id"
def project do
[
app: :ecto_encrypted_id,
version: @version,
elixir: "~> 1.13",
deps: deps(),
source_url: @source_url,
# Hex
description: "Encrypted & authenticated integer id fields for Ecto schemas",
package: [
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
],
# Docs
name: "EctoEncryptedId",
docs: [
main: "readme",
extras: ["README.md"]
]
]
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
[
{:ecto_sql, "~> 3.0"},
{:base62, "~> 1.2"},
{:stream_data, "~> 1.0", only: :test},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
end