#--- # Excerpted from "Concurrent Data Processing in Elixir", # published by The Pragmatic Bookshelf. # Copyrights apply to this code. It may not be used to create training material, # courses, books, articles, and the like. Contact us if you are in doubt. # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/sgdpelixir for more book information. #--- defmodule Airports.MixProject do use Mix.Project def project do [ app: :airports, version: "0.1.0", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end defp deps do [ {:flow, "~> 1.0"}, {:nimble_csv, "~> 1.1"} ] end end