Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Candid.MixProject do
use Mix.Project
@url "https://github.com/diodechain/candid"
def project do
[
app: :candid,
version: "1.0.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
description: "Candid is a binary encoding format for the Internet Computer (ICP).",
package: [
licenses: ["Apache-2.0"],
maintainers: ["Dominic Letz"],
links: %{"GitHub" => @url}
],
# Docs
name: "Candid",
source_url: @url,
docs: [
# The main page in the docs
main: "Candid",
extras: ["README.md"]
]
]
end
# 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
[
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:leb128, "~> 1.0.0"}
]
end
end