Packages

A simple kademlia implementation

Current section

Files

Jump to
exkad mix.exs
Raw

mix.exs

defmodule Exkad.Mixfile do
use Mix.Project
def project do
[app: :exkad,
version: "0.0.2",
elixir: "~> 1.0.0",
description: "A simple kademlia implementation",
package: package,
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[
mod: {Exkad, []},
applications: [:logger, :cowboy]]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type `mix help deps` for more examples and options
defp deps do
[
{:cowboy, "~> 1.0.0"},
{:socket, "~> 0.2.8"},
{:plug, "~> 0.8.2"},
{:httpotion, "~> 0.2.0"},
{:poison, "~> 1.2.0"},
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.0"},
]
end
defp package do
[files: ["lib", "mix.exs", "README.md"],
contributors: ["Chris Duranti"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/rozap/exkad" }]
end
end