-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
23 lines (20 loc) · 656 Bytes
/
mix.exs
File metadata and controls
23 lines (20 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
defmodule ElixirPipes.Mixfile do
use Mix.Project
def project do
[ app: :elixir_pipes,
version: "0.0.1",
elixir: "~> 0.10.3-dev",
deps: deps,
docs: [ main: Pipe, source_url: "https://github.com/pminten/elixir_pipes/", readme: true ] ]
end
# Configuration for the OTP application
def application do
[]
end
# Returns the list of dependencies in the format:
# { :foobar, "~> 0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
# TODO: Switch to master branch of monad after monad-1.0
[ { :monad, "~> 0.4", git: "https://github.com/rmies/monad.git", branch: "develop" } ]
end
end