Packages
lexdee
2.3.10
2.6.4
2.6.3
2.6.2
2.6.1
2.6.0
2.5.1
2.5.0
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.11
2.3.10
2.3.9
2.3.8
2.3.7
2.3.6
2.3.5
2.3.4
2.3.3
2.3.2
2.3.0
2.2.7
2.2.6
2.2.5
2.2.3
2.2.2
2.2.1
2.2.0
2.1.1
2.0.2
2.0.1
2.0.0
1.0.6
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.3.3
0.3.2
0.3.1
0.3.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
Client library for LXD
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Lexdee.MixProject do
use Mix.Project
def project do
[
app: :lexdee,
version: "2.3.10",
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
package: package(),
description: description(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
Client library for LXD
"""
end
defp package do
[
name: "lexdee",
files: ["lib", "mix.exs", "README*", "LICENSE"],
licenses: ["MIT"],
maintainers: ["Zack Siri"],
links: %{"GitHub" => "https://github.com/upmaru/lexdee"}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# HTTP Client
{:tesla, "~> 1.7.0"},
{:jason, ">= 1.0.0"},
# HTTP Adapter
{:castore, "~> 1.0"},
{:mint, "~> 1.5"},
{:mint_web_socket, "~> 1.0.2"},
# Certificate Management
{:x509, "~> 0.8.1"},
# SDK
{:plug_cowboy, "~> 2.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:bypass, "~> 2.0", only: :test},
{:dialyxir, "~> 1.0", 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