Update mix.exs
This commit is contained in:
26
mix.exs
26
mix.exs
@@ -2,24 +2,26 @@ defmodule FFI.Mixfile do
|
|||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[app: :ffi,
|
[
|
||||||
version: "0.0.1-alpha",
|
app: :ffi,
|
||||||
description: "Foreign Function Interface",
|
version: "0.0.1-alpha",
|
||||||
package: [
|
description: "Foreign Function Interface",
|
||||||
maintainers: ["Joshua Nussbaum"],
|
package: [
|
||||||
licenses: ["MIT"],
|
maintainers: ["Joshua Nussbaum"],
|
||||||
links: %{github: "https://github.com/joshnuss/elixir-ffi"}
|
licenses: ["MIT"],
|
||||||
],
|
links: %{github: "https://github.com/joshnuss/elixir-ffi"}
|
||||||
elixir: "~> 1.19",
|
],
|
||||||
compilers: [:elixir_make] ++ Mix.compilers,
|
elixir: "~> 1.19",
|
||||||
deps: deps]
|
compilers: [:elixir_make] ++ Mix.compilers,
|
||||||
|
deps: deps()
|
||||||
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Configuration for the OTP application
|
# Configuration for the OTP application
|
||||||
#
|
#
|
||||||
# Type `mix help compile.app` for more information
|
# Type `mix help compile.app` for more information
|
||||||
def application do
|
def application do
|
||||||
[extra_applicationss: [:logger]]
|
[extra_applications: [:logger]]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Dependencies can be Hex packages:
|
# Dependencies can be Hex packages:
|
||||||
|
|||||||
Reference in New Issue
Block a user