sampu/sampu.cabal

33 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-02-18 10:37:40 -06:00
cabal-version: 3.0
name: sampu
version: 0.1.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
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
, bytestring >= 0.11.5.0
, commonmark >= 0.2.4
2024-02-18 13:41:43 -06:00
, dotenv >= 0.11.0.0
2024-02-18 10:37:40 -06:00
, lucid >= 2.11.0
2024-02-18 14:26:11 -06:00
, text >= 2.0
2024-02-18 10:37:40 -06:00
, twain >= 2.1.0.0
, wai-extra >= 3.0 && < 3.2
, warp == 3.3.25
hs-source-dirs: src
2024-02-18 14:26:11 -06:00
other-modules: Core.Configuration
Core.Handlers
Core.HTTP
Core.Rendering
Templates.Base
2024-02-18 10:37:40 -06:00
default-language: GHC2021