Packages
baby
0.13.2
0.35.1
0.35.0
0.34.0
0.33.0
0.32.0
0.31.0
0.30.1
0.30.0
0.26.0
0.25.2
0.25.1
0.25.0
0.23.0
0.22.0
0.21.1
0.21.0
0.20.0
0.19.0
0.18.0
0.17.0
0.16.4
0.16.3
0.16.1
0.16.0
0.15.1
0.15.0
0.14.1
0.14.0
0.13.2
0.13.1
0.13.0
0.12.1
0.12.0
0.11.4
0.11.3
0.11.2
0.11.1
0.11.0
0.10.0
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.0
0.7.0
0.6.0
Bushbaby Automated Bamboo Yields
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Baby.MixProject do
use Mix.Project
def project do
[
app: :baby,
version: "0.13.2",
elixir: "~> 1.13",
name: "Baby",
source_url: "https://github.com/mwmiller/baby_ex",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
def application do
[
extra_applications: [:logger, :ranch]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:baobab, "~> 0.19.0"},
{:stlv, "~> 1.0"},
{:varu64, "~> 1.0"},
# Third-party
{:cbor, "~> 1.0"},
{:enacl, "~> 1.2"},
{:ranch, "~> 1.8"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"""
Bushbaby Automated Bamboo Yields
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Matt Miller"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/mwmiller/baby_ex"
}
]
end
end