diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-06 13:42:44 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-06 13:42:44 +0100 |
commit | 542fe6edb8ff35907f06b20182bb8692c357f29b (patch) | |
tree | 4c1d80d7908fc8ddaa41964723fb9981e975d50d /json2sql.cabal |
init
Diffstat (limited to 'json2sql.cabal')
-rw-r--r-- | json2sql.cabal | 32 |
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 |