Update mix.exs

This commit is contained in:
dff
2026-02-01 15:21:41 +00:00
parent bcae0fb5ad
commit 779776a0b2

26
mix.exs
View File

@@ -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: