HELPS/HELPS.cabal

73 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-10-16 15:54:34 -05:00
cabal-version: 3.0
2024-09-18 13:16:36 -05:00
name: HELPS
version: 0.0.1
description: Haskell, Effectful, Lucid, PostgreSQL, Servant
author: James Eversole
maintainer: james@eversole.co
copyright: James Eversole
license: ISC
license-file: LICENSE
build-type: Simple
2024-10-16 15:54:34 -05:00
with-compiler: ghc-9.6.6
documentation: True
2024-09-18 13:16:36 -05:00
extra-source-files:
README
2024-10-16 15:54:34 -05:00
common global
build-depends:
base
, aeson
, bytestring
, effectful
, exceptions
, lucid
, mtl
, postgresql-simple
, resource-pool
, servant-lucid
2024-10-16 15:54:34 -05:00
, servant-server
, text
, time
, utf8-string
, wai-middleware-static
2024-10-16 15:54:34 -05:00
, warp
2024-09-18 13:16:36 -05:00
default-extensions:
BlockArguments
ConstraintKinds
DataKinds
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
LambdaCase
OverloadedRecordDot
OverloadedStrings
ScopedTypeVariables
StrictData
TypeFamilies
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
2024-10-16 15:54:34 -05:00
default-language: GHC2021
executable Main
import: global
hs-source-dirs:
src
main-is: Main.hs
2024-09-18 13:16:36 -05:00
other-modules:
Core
Database
Handlers
2024-10-13 13:30:39 -05:00
Logger
Routes
Utility
Views
2024-10-16 15:54:34 -05:00
build-depends:
HELPS
library
import: global
hs-source-dirs:
src
exposed-modules: Core, Database, Handlers, Logger, Main, Routes, Utility, Views