55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
cabal-version: 1.12
|
|
|
|
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
|
|
extra-source-files:
|
|
README
|
|
|
|
executable Main
|
|
main-is: Main.hs
|
|
hs-source-dirs:
|
|
src
|
|
default-extensions:
|
|
BlockArguments
|
|
ConstraintKinds
|
|
DataKinds
|
|
DeriveAnyClass
|
|
DeriveGeneric
|
|
DerivingStrategies
|
|
FlexibleContexts
|
|
FlexibleInstances
|
|
GeneralizedNewtypeDeriving
|
|
LambdaCase
|
|
OverloadedRecordDot
|
|
OverloadedStrings
|
|
ScopedTypeVariables
|
|
StrictData
|
|
TypeFamilies
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
|
|
build-depends:
|
|
base
|
|
, aeson
|
|
, bytestring
|
|
, effectful
|
|
, exceptions
|
|
, lucid
|
|
, mtl
|
|
, postgresql-simple
|
|
, resource-pool
|
|
, servant-server
|
|
, text
|
|
, utf8-string
|
|
, warp
|
|
other-modules:
|
|
Core
|
|
Database
|
|
Handlers
|
|
default-language: GHC2021
|