aboutsummaryrefslogtreecommitdiffstats
path: root/backend/backend.cabal
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-10-11 15:01:17 +0200
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-10-11 15:01:17 +0200
commit9a44128f4c2228311b5402d3b57c056f5f20558e (patch)
tree969ed3be812abbcc747efc6d388e269fc02adc0a /backend/backend.cabal
parent35bf45a81da20d782a8a654703eca14543e25def (diff)
Add ACMS.API.REST.Collection
Diffstat (limited to 'backend/backend.cabal')
-rw-r--r--backend/backend.cabal37
1 files changed, 37 insertions, 0 deletions
diff --git a/backend/backend.cabal b/backend/backend.cabal
index b1b1344..4909bdf 100644
--- a/backend/backend.cabal
+++ b/backend/backend.cabal
@@ -7,6 +7,43 @@ maintainer: aforemny@posteo.de
author: Alexander Foremny
build-type: Simple
+library
+ exposed-modules: ACMS.API.REST.Collection
+ hs-source-dirs: lib
+ default-language: GHC2021
+ default-extensions:
+ BlockArguments LambdaCase OverloadedStrings ViewPatterns
+ OverloadedRecordDot NoFieldSelectors MultiWayIf
+
+ ghc-options: -Wall -threaded
+ build-depends:
+ aeson,
+ astore,
+ attoparsec,
+ autotypes,
+ base,
+ bytestring,
+ common,
+ containers,
+ directory,
+ filepath,
+ gitlib,
+ gitlib-libgit2,
+ hinotify,
+ hlibgit2,
+ http-conduit,
+ http-types,
+ mtl,
+ optparse-applicative,
+ safe,
+ split,
+ stm,
+ tagged,
+ text,
+ utf8-string,
+ wai,
+ warp
+
executable backend
main-is: Main.hs
hs-source-dirs: app