30 lines
808 B
Plaintext
30 lines
808 B
Plaintext
|
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
|
||
|
build-depends: base
|
||
|
, bytestring >= 0.11.5.0
|
||
|
, commonmark >= 0.2.4
|
||
|
, lucid >= 2.11.0
|
||
|
, twain >= 2.1.0.0
|
||
|
, wai-extra >= 3.0 && < 3.2
|
||
|
, warp == 3.3.25
|
||
|
hs-source-dirs: src
|
||
|
other-modules:
|
||
|
Core.Handlers
|
||
|
Core.HTTP
|
||
|
Core.Rendering
|
||
|
Templates.Base
|
||
|
default-language: GHC2021
|