aboutsummaryrefslogtreecommitdiffstats
path: root/backend/backend.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'backend/backend.cabal')
-rw-r--r--backend/backend.cabal86
1 files changed, 0 insertions, 86 deletions
diff --git a/backend/backend.cabal b/backend/backend.cabal
deleted file mode 100644
index 6b13682..0000000
--- a/backend/backend.cabal
+++ /dev/null
@@ -1,86 +0,0 @@
-cabal-version: 3.4
-name: backend
-version: 0.1.0.0
-license: BSD-3-Clause
-license-file: LICENSE
-maintainer: aforemny@posteo.de
-author: Alexander Foremny
-build-type: Simple
-
-library
- exposed-modules:
- ACMS.API.Query
- ACMS.API.REST
- ACMS.API.REST.Collection
- ACMS.API.REST.Collection.Paginated
-
- hs-source-dirs: lib
- other-modules: ACMS.API.Fetch
- default-language: GHC2021
- default-extensions:
- CPP BlockArguments LambdaCase OverloadedStrings ViewPatterns
- OverloadedRecordDot NoFieldSelectors MultiWayIf
-
- ghc-options: -Wall -threaded
- build-depends:
- aeson,
- base,
- bytestring,
- common,
- exceptions,
- miso,
- text,
- utf8-string
-
- if arch(javascript)
- build-depends: ghcjs-base
-
- else
- build-depends: http-conduit
-
-executable backend
- main-is: Main.hs
- hs-source-dirs: app
- 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,
- exceptions,
- filepath,
- gitlib,
- gitlib-libgit2,
- hinotify,
- hlibgit2,
- http-types,
- mtl,
- non-empty,
- optparse-applicative,
- random,
- regex,
- regex-base,
- regex-pcre,
- safe,
- split,
- stm,
- tagged,
- text,
- utf8-string,
- uuid,
- vector,
- wai,
- warp
-
- if arch(javascript)
- buildable: False