diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-05-28 22:04:34 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-05-28 22:04:34 +0200 |
commit | ec0ea18486ed2569808f2e511ecac52f812300b0 (patch) | |
tree | a03ef5a9272b8c9533c83f4e3a29a508e24cfeb1 /autotypes/autotypes.cabal |
init
Diffstat (limited to 'autotypes/autotypes.cabal')
-rw-r--r-- | autotypes/autotypes.cabal | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/autotypes/autotypes.cabal b/autotypes/autotypes.cabal new file mode 100644 index 0000000..284ad0e --- /dev/null +++ b/autotypes/autotypes.cabal @@ -0,0 +1,54 @@ +cabal-version: 2.4 +name: autotypes +version: 0.1.0.0 + +-- A short (one-line) description of the package. +-- synopsis: + +-- A longer description of the package. +-- description: + +-- A URL where users can report bugs. +-- bug-reports: + +-- The license under which the package is released. +-- license: +author: Alexander Foremny +maintainer: aforemny@posteo.de + +-- A copyright notice. +-- copyright: +-- category: +extra-source-files: CHANGELOG.md + +library + exposed-modules: + AutoTypes + AutoTypes.Unify + + -- Modules included in this library but not exported. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: + aeson, + aeson-qq, + base, + bytestring, + containers, + filepath, + vector + hs-source-dirs: src + default-language: Haskell2010 + +executable autotypes + main-is: Main.hs + hs-source-dirs: app + default-language: Haskell2010 + build-depends: + aeson, + autotypes, + base, + bytestring, + filepath |