Packages

A library for overload protection via adaptive concurrency, which supports multiple algorithms and custom signal definitions.

Current section

Files

Jump to
aperture mix.exs
Raw

mix.exs

defmodule Aperture.MixProject do
use Mix.Project
def project do
[
app: :aperture,
deps: deps(),
description:
"A library for overload protection via adaptive concurrency, which supports multiple algorithms and custom signal definitions.",
elixir: "~> 1.19",
name: "Aperture",
package: package(),
source_url: "https://github.com/clark-lindsay/aperture",
start_permanent: Mix.env() == :prod,
version: "0.0.1"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:stream_data, "~> 1.2", only: :test}
]
end
defp package do
[
name: "aperture",
licenses: ["MIT"],
links: %{"github" => "https://github.com/clark-lindsay/aperture"}
]
end
end