diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-13 02:07:20 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-13 02:10:56 +0100 |
commit | 950eea3ba04e94cf3d5797f9b5d32b2621c89b55 (patch) | |
tree | 2e6aee5b7f571ca8022181689d5650a8c1b82f03 /astore.cabal | |
parent | b110c5904d4b252d0adbb7fbfabd3270a7844fd3 (diff) |
refactor library
Diffstat (limited to 'astore.cabal')
-rw-r--r-- | astore.cabal | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/astore.cabal b/astore.cabal new file mode 100644 index 0000000..fa9b4ea --- /dev/null +++ b/astore.cabal @@ -0,0 +1,64 @@ +cabal-version: 3.4 +name: astore +version: 0.1.0.0 +license: Apache-2.0 +license-file: LICENSE +maintainer: aforemny@posteo.de +author: Alexander Foremny +build-type: Simple +extra-doc-files: CHANGELOG.md + +library + exposed-modules: + Store + + hs-source-dirs: src + other-modules: Store.Debug + Store.Exception + Store.Query + Store.Query.Field + Store.Query.Parser + Store.Query.Printer + Store.Query.Record + Store.Query.Type + Store.Store + default-language: GHC2021 + default-extensions: + AllowAmbiguousTypes BlockArguments GeneralizedNewtypeDeriving + OverloadedRecordDot OverloadedStrings ViewPatterns + + ghc-options: + -Wall -fno-warn-incomplete-patterns -fno-warn-name-shadowing + + build-depends: + aeson, + base, + bytestring, + containers, + directory, + exceptions, + filepath, + gitlib, + gitlib-libgit2, + megaparsec, + mtl, + parser-combinators, + tagged, + text, + unliftio, + unliftio-core, + unordered-containers, + utf8-string, + vector + +executable astore + main-is: Main.hs + hs-source-dirs: app + default-language: GHC2021 + default-extensions: OverloadedStrings + build-depends: + aeson, + astore, + base, + bytestring, + directory |