circuits_uart_midi_framing/mix.exs

50 lines
1.1 KiB
Elixir
Raw Normal View History

2020-05-04 18:14:37 +12:00
defmodule Circuits.UART.Framing.MIDI.MixProject do
use Mix.Project
2020-05-04 21:26:45 +12:00
@version "0.1.0"
@description """
Implements MIDI framing for Serial ports connected via Circuits.UART.
"""
2020-05-04 18:14:37 +12:00
def project do
[
app: :circuits_uart_midi_framing,
2020-05-04 21:26:45 +12:00
version: @version,
2020-05-04 18:14:37 +12:00
elixir: "~> 1.10",
2020-05-04 21:26:45 +12:00
package: package(),
description: @description,
2020-05-04 18:14:37 +12:00
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
2020-05-04 21:26:45 +12:00
def package do
[
maintainers: ["James Harton <james@harton.nz>"],
2020-05-04 21:26:45 +12:00
licenses: ["Hippocratic"],
links: %{
"Source" => "https://gitlab.com/jimsy/circuits_uart_midi_framing"
}
]
end
2020-05-04 18:14:37 +12:00
# 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
[
2020-05-04 21:26:45 +12:00
{:circuits_uart, "~> 1.4"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:earmark, ">= 1.4.19", only: [:dev, :test]},
{:ex_doc, ">= 0.26.0", only: [:dev, :test]},
{:git_ops, "~> 2.4", only: ~w[dev test]a, runtime: false}
2020-05-04 18:14:37 +12:00
]
end
end