diff options
Diffstat (limited to 'astore.cabal')
-rw-r--r-- | astore.cabal | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/astore.cabal b/astore.cabal index fa9b4ea..568bb41 100644 --- a/astore.cabal +++ b/astore.cabal @@ -9,11 +9,10 @@ build-type: Simple extra-doc-files: CHANGELOG.md library - exposed-modules: - Store - + exposed-modules: Store hs-source-dirs: src - other-modules: Store.Debug + other-modules: + Store.Debug Store.Exception Store.Query Store.Query.Field @@ -22,6 +21,7 @@ library Store.Query.Record Store.Query.Type Store.Store + default-language: GHC2021 default-extensions: AllowAmbiguousTypes BlockArguments GeneralizedNewtypeDeriving @@ -55,10 +55,15 @@ executable astore main-is: Main.hs hs-source-dirs: app default-language: GHC2021 - default-extensions: OverloadedStrings + default-extensions: + LambdaCase NoFieldSelectors OverloadedRecordDot OverloadedStrings + build-depends: aeson, astore, base, bytestring, - directory + directory, + mtl, + optparse-applicative, + repline |