From 779776a0b2c279620326b3d41e62104d77b22ebc Mon Sep 17 00:00:00 2001 From: dff Date: Sun, 1 Feb 2026 15:21:41 +0000 Subject: [PATCH] Update mix.exs --- mix.exs | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/mix.exs b/mix.exs index 85c5e87..cdfa140 100644 --- a/mix.exs +++ b/mix.exs @@ -2,24 +2,26 @@ defmodule FFI.Mixfile do use Mix.Project def project do - [app: :ffi, - version: "0.0.1-alpha", - description: "Foreign Function Interface", - package: [ - maintainers: ["Joshua Nussbaum"], - licenses: ["MIT"], - links: %{github: "https://github.com/joshnuss/elixir-ffi"} - ], - elixir: "~> 1.19", - compilers: [:elixir_make] ++ Mix.compilers, - deps: deps] + [ + app: :ffi, + version: "0.0.1-alpha", + description: "Foreign Function Interface", + package: [ + maintainers: ["Joshua Nussbaum"], + licenses: ["MIT"], + links: %{github: "https://github.com/joshnuss/elixir-ffi"} + ], + elixir: "~> 1.19", + compilers: [:elixir_make] ++ Mix.compilers, + deps: deps() + ] end # Configuration for the OTP application # # Type `mix help compile.app` for more information def application do - [extra_applicationss: [:logger]] + [extra_applications: [:logger]] end # Dependencies can be Hex packages: