-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (27 loc) · 755 Bytes
/
mix.exs
File metadata and controls
32 lines (27 loc) · 755 Bytes
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
defmodule MessagePack.Mixfile do
use Mix.Project
def project do
[ app: :message_pack,
version: "0.2.0",
elixir: "~> 1.0.0 or ~> 0.15.1",
deps: deps,
build_per_environment: false,
name: "MessagePack",
source_url: "https://github.com/mururu/msgpack-elixir",
description: "MessagePack Implementation for Elixir",
package: package ]
end
def application do
[]
end
defp deps do
[{ :excheck, "~> 0.2.0", only: :test },
{:triq, github: "krestenkrab/triq", only: :test},
{ :poison, "~> 1.2.0", only: :test },]
end
defp package do
[ contributors: ["Yuki Ito"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/mururu/msgpack-elixir"} ]
end
end