2024-05-28 22:04:34 +02:00
|
|
|
cabal-version: 3.4
|
2024-05-31 10:42:26 +02:00
|
|
|
name: backend
|
2024-05-28 22:04:34 +02:00
|
|
|
version: 0.1.0.0
|
|
|
|
|
license: BSD-3-Clause
|
|
|
|
|
license-file: LICENSE
|
|
|
|
|
maintainer: aforemny@posteo.de
|
|
|
|
|
author: Alexander Foremny
|
|
|
|
|
build-type: Simple
|
|
|
|
|
|
2024-10-11 15:01:17 +02:00
|
|
|
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
|
|
|
|
|
|
2024-05-31 10:42:26 +02:00
|
|
|
executable backend
|
2024-05-28 22:04:34 +02:00
|
|
|
main-is: Main.hs
|
|
|
|
|
hs-source-dirs: app
|
2024-06-07 16:14:52 +02:00
|
|
|
other-modules: Route
|
2024-05-28 22:04:34 +02:00
|
|
|
default-language: GHC2021
|
|
|
|
|
default-extensions:
|
|
|
|
|
BlockArguments LambdaCase OverloadedStrings ViewPatterns
|
2024-06-07 16:14:52 +02:00
|
|
|
OverloadedRecordDot NoFieldSelectors MultiWayIf
|
2024-05-28 22:04:34 +02:00
|
|
|
|
|
|
|
|
ghc-options: -Wall -threaded
|
|
|
|
|
build-depends:
|
|
|
|
|
aeson,
|
|
|
|
|
astore,
|
|
|
|
|
attoparsec,
|
|
|
|
|
autotypes,
|
|
|
|
|
base,
|
|
|
|
|
bytestring,
|
2024-06-05 22:47:49 +02:00
|
|
|
common,
|
2024-05-28 22:04:34 +02:00
|
|
|
containers,
|
|
|
|
|
directory,
|
|
|
|
|
filepath,
|
|
|
|
|
gitlib,
|
|
|
|
|
gitlib-libgit2,
|
2024-06-05 18:02:33 +02:00
|
|
|
hinotify,
|
2024-05-28 22:04:34 +02:00
|
|
|
hlibgit2,
|
|
|
|
|
http-types,
|
|
|
|
|
mtl,
|
|
|
|
|
optparse-applicative,
|
2024-06-05 22:47:49 +02:00
|
|
|
safe,
|
|
|
|
|
split,
|
2024-06-05 18:02:33 +02:00
|
|
|
stm,
|
2024-05-28 22:04:34 +02:00
|
|
|
tagged,
|
2024-06-05 22:47:49 +02:00
|
|
|
text,
|
2024-05-28 22:04:34 +02:00
|
|
|
utf8-string,
|
|
|
|
|
wai,
|
|
|
|
|
warp
|