name: hs-server version: 0.1.0.0 license: BSD-3-Clause author: "mtgmonkey" maintainer: "mtgmonkey" copyright: "2025 mtgmonkey" extra-source-files: - README.md - CHANGELOG.md # Metadata used when publishing your package # synopsis: Short description of your package # category: Web # To avoid duplicated efforts in documentation and dealing with the # complications of embedding Haddock markup inside cabal files, it is # common to point users to the README.md file. description: Please see README.md dependencies: - aeson >= 2.2.3 && < 2.3 - base >= 4.19.2 && < 4.20 - blaze-html >= 0.9.2 && < 0.10 - blaze-markup >= 0.8.3 && < 0.9 - directory >= 1.3.8 && < 1.4 - elm-street >= 0.2.2 && < 0.3 - http-types >= 0.12.4 && < 0.13 - scotty >= 0.22 && < 0.23 - text >= 2.1.1 && < 2.2 - wai-extra >= 3.1.16 && < 3.2 - warp >= 3.4.7 && < 3.5 ghc-options: - -Wall - -Wcompat - -Widentities - -Wincomplete-record-updates - -Wincomplete-uni-patterns - -Wmissing-export-lists - -Wmissing-home-modules - -Wpartial-fields - -Wredundant-constraints library: source-dirs: src executables: hs-server-exe: main: Main.hs source-dirs: app ghc-options: - -threaded - -rtsopts - -with-rtsopts=-N dependencies: - hs-server tests: hs-server-test: main: Spec.hs source-dirs: test ghc-options: - -threaded - -rtsopts - -with-rtsopts=-N dependencies: - hs-server