Current section
Files
Jump to
Current section
Files
mix.exs
defmodule LennyNif.MixProject do
use Mix.Project
def project do
[
app: :lenny_nif,
version: "0.0.1",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Elixir NIF bindings for the Lenny secret redaction engine",
package: package(),
source_url: "https://github.com/ZenSRE/lenny"
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:rustler, "~> 0.36.0", runtime: false},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp package do
[
name: "lenny_nif",
licenses: ["MIT", "Apache-2.0"],
links: %{"GitHub" => "https://github.com/ZenSRE/lenny"},
files: ~w(lib mix.exs README.md LICENSE-MIT LICENSE-APACHE)
]
end
end