defmodule P2pChat.MixProject do use Mix.Project def project do [ app: :p2p_chat, version: "0.1.0", elixir: "~> 1.18", 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 [ { :uuid, "~> 1.1" } # {:quicer, git: "https://github.com/emqx/quic.git", tag: "0.2.4"}, # {:dep_from_hexpm, "~> 0.3.0"}, ] end end