Current section

Files

Jump to
ton mix.exs
Raw

mix.exs

defmodule Ton.MixProject do
use Mix.Project
def project do
[
app: :ton,
version: "0.3.2",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "TON (The Open Network) SDK",
package: [
maintainers: ["Ayrat Badykov"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/ayrat555/ton"},
files: [
"mix.exs",
"native/crc16/.cargo/config.toml",
"native/crc16/src",
"native/crc16/Cargo.toml",
"native/crc16/Cargo.lock",
"lib",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:ex_pbkdf2, "~> 0.7.1"},
{:cafezinho, "~> 0.3.0"},
{:mnemoniac, "~> 0.1.0"},
{:evil_crc32c, "~> 0.1.2"},
{:rustler, "~> 0.26"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false}
]
end
end