44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
cabal-version: 3.0
|
|
name: sampu
|
|
version: 0.10.0
|
|
license: ISC
|
|
author: James Eversole
|
|
maintainer: james@eversole.co
|
|
build-type: Simple
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
executable sampu
|
|
import: warnings
|
|
main-is: Main.hs
|
|
default-extensions: OverloadedStrings
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
|
|
build-depends: base
|
|
, bytestring
|
|
, clay
|
|
, commonmark
|
|
, directory
|
|
, dotenv
|
|
, feed
|
|
, filemanip
|
|
, filepath
|
|
, http-types
|
|
, lucid
|
|
, text
|
|
, time
|
|
, twain
|
|
, wai-extra
|
|
, wai-middleware-static
|
|
, warp
|
|
, xml-conduit
|
|
hs-source-dirs: src
|
|
other-modules: Core.Configuration
|
|
Core.Feed
|
|
Core.Handlers
|
|
Core.HTTP
|
|
Core.Rendering
|
|
Fragments.Base
|
|
Fragments.Styles
|
|
default-language: GHC2021
|