ExCoder/mix.exs
Mikko Ahlroth 5990f698fe Many new improvements, bump version to 1.1.0.
* Refactor numeric decode regex to module attribute, avoid recreating it with
  every call.
* Use character table also when encoding. This results in some compile warns,
  but the code works as expected. Removing the warnings is for TODO.
* Bump elixir version to 0.11.x
* Write tests for encoding and decoding
2013-11-25 21:34:39 +02:00

21 lines
395 B
Elixir

defmodule Excoder.Mixfile do
use Mix.Project
def project do
[ app: :excoder,
version: "1.1.0",
elixir: "~> 0.11",
deps: deps ]
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
[]
end
end