defmodule Stensitive.MixProject do use Mix.Project def project do [ app: :stensitive, version: "0.1.0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, description: description(), name: "Stensitive", package: package(), deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end defp package do [ name: "stensitive", version: "0.1.0", licenses: ["Apache-2.0"], links: %{"Github" => "https://github.com/Xycloo/Stensitive/tree/main/cli/stensitive"}, ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:exswallet, "~> 0.1.0"}, {:stellar_sdk, "~> 0.6.0"}, {:poison, "~> 5.0"}, {:httpoison, "~> 1.8"}, # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end defp description do "Store sensitive data in a secure way, completely for free, on Blockchain. Works with the Stellar network." end end