From d90365c58497274f65cd0c7b05606029bd756065 Mon Sep 17 00:00:00 2001
From: Catalin Mititiuc
Date: Thu, 5 Dec 2024 08:47:27 -0800
Subject: Initial commit
---
mix.exs | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 mix.exs
(limited to 'mix.exs')
diff --git a/mix.exs b/mix.exs
new file mode 100644
index 0000000..e677a09
--- /dev/null
+++ b/mix.exs
@@ -0,0 +1,31 @@
+defmodule Pandoc.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :pandoc,
+ version: "0.1.0",
+ elixir: "~> 1.14",
+ deps: deps(),
+ description: "Pandoc",
+ package: []
+ ]
+ end
+
+ # Run "mix help compile.app" to learn about applications.
+ def application do
+ [
+ extra_applications: [:logger],
+ mod: {Pandoc.Application, []}
+ ]
+ 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"}
+ {:file_system, "~> 1.0"}
+ ]
+ end
+end
--
cgit v1.2.3