yore/yore.cabal
Paul Brinkmeier 80f2e52327 Bump opium
2025-07-20 02:54:48 +02:00

64 lines
1.1 KiB
Plaintext

cabal-version: 3.4
name: yore
version: 0
author: Paul Brinkmeier
maintainer: hallo@pbrinkmeier.de
copyright: 2023 Paul Brinkmeier
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://git.pbrinkmeier.de/paul/yore
common shared-options
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
default-language: GHC2021
library
import: shared-options
exposed-modules:
Yore.DB
, Yore.Repl
, Yore.Download
hs-source-dirs:
src
build-depends:
base >=4.18 && <5
, opium
executable yore
import: shared-options
main-is: Main.hs
hs-source-dirs:
app
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
-ghci-script=.ghci
build-depends:
yore
, base >=4.18 && <5
, blaze-html
, bytestring
, http-media
, opium
, servant-server
, text
, wai
, warp