diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-13 02:29:24 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-13 06:38:01 +0100 |
commit | 0c86cb5623df1053d302175505ad834a623ed0a4 (patch) | |
tree | 9a26bd2f0b2f99dceb01b3396ac0da221f3ae444 /astore.cabal | |
parent | 950eea3ba04e94cf3d5797f9b5d32b2621c89b55 (diff) |
add `repl` command
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 |