1 Star 0 Fork 2

编程语言算法集 / Elixir

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mix.exs 577 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vitor Oliveira 提交于 2021-01-01 13:05 . Rename project to fix typo
defmodule Algorithms.MixProject do
use Mix.Project
def project do
[
app: :algorithms,
version: "0.1.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps()
]
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
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end
1
https://gitee.com/TheAlgorithms/Elixir.git
git@gitee.com:TheAlgorithms/Elixir.git
TheAlgorithms
Elixir
Elixir
master

搜索帮助