Current section
Files
Jump to
Current section
Files
mix.exs
defmodule FastCi.MixProject do
use Mix.Project
def project do
[
app: :fast_ci,
version: "0.1.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "FastCi",
description: "Test runner for FastCi.",
package: package(),
source_url: "https://github.com/RubyCI/fast_ci_elixir"
]
end
def package do
[
licenses: [
"BUSL-1.1"
],
links: %{
"Website" => "https://app.fast.ci/"
}
]
end
def description() do
"""
Elixir client for the FastCI test orchestration framework.
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {FastCi.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:mint_web_socket, "~> 1.0"},
{:jason, "~> 1.4"},
{:castore, "~> 1.0"},
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end