defmodule CA.Mixfile do
use Mix.Project
def application(), do: [ mod: {CA, []}, extra_applications: [:x509, :bandit, :plug, :logger]]
def project() do
[
app: :ca,
version: "7.1.4",
description: "CA CXC 138 21 Certificate Authority",
releases: [ca: [include_executables_for: [:unix], cookie: "SYNRC:CA"]],
package: [
name: :ca,
files: ~w(config src include priv lib mix.exs LICENSE README.md),
licenses: ["ISC"],
maintainers: ["Namdak Tonpa"],
links: %{"GitHub" => "https://github.com/synrc/ca"}
],
deps: [
{:base85, "~> 0.3.0"},
{:cose, "~> 0.11.20"},
{:jason, "~> 1.2"},
{:plug, "~> 1.19.1"},
{:bandit, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:x509, "~> 0.9.0"}
]
]
end
end