42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
|
cabal-version: 3.0
|
||
|
name: bahnhof-name
|
||
|
-- PVP summary: +-+------- breaking API changes
|
||
|
-- | | +----- non-breaking API additions
|
||
|
-- | | | +--- code changes with no API change
|
||
|
version: 0.2.0.0
|
||
|
synopsis: Serve information on German railway stations
|
||
|
license: EUPL-1.2
|
||
|
license-file: LICENSE
|
||
|
author: stuebinm
|
||
|
maintainer: stuebinm@disroot.org
|
||
|
build-type: Simple
|
||
|
extra-doc-files: CHANGELOG.md
|
||
|
extra-source-files: data/*
|
||
|
|
||
|
common warnings
|
||
|
ghc-options: -Wall
|
||
|
|
||
|
executable bahnhof-name
|
||
|
import: warnings
|
||
|
|
||
|
main-is: Main.hs
|
||
|
hs-source-dirs: app
|
||
|
build-depends: base ^>=4.16.4.0
|
||
|
, fuzzyset
|
||
|
, fuzzyfind
|
||
|
, text
|
||
|
, vector
|
||
|
, cassava
|
||
|
, bytestring
|
||
|
, wai
|
||
|
, wai-extra
|
||
|
, warp
|
||
|
, http-types
|
||
|
, containers
|
||
|
, http-client
|
||
|
, http-client-openssl
|
||
|
, stm
|
||
|
, time
|
||
|
default-language: GHC2021
|
||
|
ghc-options: -threaded -with-rtsopts=--nonmoving-gc
|