diff options
Diffstat (limited to 'bahnhof-name.cabal')
-rw-r--r-- | bahnhof-name.cabal | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/bahnhof-name.cabal b/bahnhof-name.cabal new file mode 100644 index 0000000..10f9c75 --- /dev/null +++ b/bahnhof-name.cabal @@ -0,0 +1,41 @@ +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 |