2024-02-18 10:37:40 -06:00
|
|
|
cabal-version: 3.0
|
|
|
|
name: sampu
|
2024-10-17 09:31:34 -05:00
|
|
|
version: 0.10.0
|
2024-02-18 10:37:40 -06:00
|
|
|
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
|
2024-02-18 14:26:11 -06:00
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
|
2024-02-18 10:37:40 -06:00
|
|
|
build-depends: base
|
2024-02-18 18:16:09 -06:00
|
|
|
, bytestring >= 0.11.5.0
|
2024-02-25 11:06:49 -06:00
|
|
|
, clay >= 0.14.0
|
2024-02-18 18:16:09 -06:00
|
|
|
, commonmark >= 0.2.4
|
2024-02-22 19:58:34 -06:00
|
|
|
, directory >= 1.3.7.0
|
2024-02-18 18:16:09 -06:00
|
|
|
, dotenv >= 0.11.0.0
|
2024-02-24 16:55:03 -06:00
|
|
|
, feed >= 1.3.2.0
|
2024-02-24 09:32:19 -06:00
|
|
|
, filemanip >= 0.3.6.1
|
|
|
|
, filepath >= 1.4.2.2
|
2024-10-17 09:31:34 -05:00
|
|
|
, http-types
|
2024-02-18 18:16:09 -06:00
|
|
|
, lucid >= 2.11.0
|
|
|
|
, text >= 2.0
|
2024-02-24 16:55:03 -06:00
|
|
|
, time >= 1.12.0
|
2024-02-18 18:16:09 -06:00
|
|
|
, twain >= 2.1.0.0
|
|
|
|
, wai-extra >= 3.0 && < 3.2
|
2024-02-25 15:01:56 -06:00
|
|
|
, wai-middleware-static >= 0.9.0
|
2024-02-18 18:16:09 -06:00
|
|
|
, warp == 3.3.25
|
2024-02-24 16:55:03 -06:00
|
|
|
, xml-conduit >= 1.9.1.0
|
2024-02-18 10:37:40 -06:00
|
|
|
hs-source-dirs: src
|
2024-02-18 14:26:11 -06:00
|
|
|
other-modules: Core.Configuration
|
2024-02-24 16:55:03 -06:00
|
|
|
Core.Feed
|
2024-02-18 14:26:11 -06:00
|
|
|
Core.Handlers
|
|
|
|
Core.HTTP
|
|
|
|
Core.Rendering
|
2024-02-18 18:16:09 -06:00
|
|
|
Fragments.Base
|
2024-02-27 12:31:20 -06:00
|
|
|
Fragments.Styles
|
2024-02-18 10:37:40 -06:00
|
|
|
default-language: GHC2021
|