aboutsummaryrefslogtreecommitdiffstats
path: root/json2sql.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'json2sql.cabal')
-rw-r--r--json2sql.cabal32
1 files changed, 32 insertions, 0 deletions
diff --git a/json2sql.cabal b/json2sql.cabal
new file mode 100644
index 0000000..23ef3a7
--- /dev/null
+++ b/json2sql.cabal
@@ -0,0 +1,32 @@
+cabal-version: 3.4
+name: json2sql
+version: 0.1.0.0
+-- synopsis:
+-- description:
+license: Apache-2.0
+license-file: LICENSE
+author: Alexander Foremny
+maintainer: aforemny@posteo.de
+-- copyright:
+build-type: Simple
+extra-doc-files: CHANGELOG.md
+-- extra-source-files:
+
+common warnings
+ ghc-options: -Wall
+
+executable json2sql
+ import: warnings
+ main-is: Main.hs
+ -- other-modules:
+ -- other-extensions:
+ build-depends: base ^>=4.16.4.0,
+ aeson,
+ bytestring,
+ containers,
+ directory,
+ filepath,
+ megaparsec,
+ text
+ hs-source-dirs: app
+ default-language: GHC2021