35 lines
1,022 B
Plaintext
35 lines
1,022 B
Plaintext
cabal-version: 3.0
|
|
name: berlin-scraper
|
|
version: 0.1.0.0
|
|
license: AGPL-3.0-or-later
|
|
license-file: LICENSE
|
|
author: Akshay Mankar
|
|
maintainer: itsakshaymankar@gmail.com
|
|
category: Web
|
|
build-type: Simple
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
executable berlin-scraper
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends: base ^>=4.17.1.0
|
|
, scalpel
|
|
, aeson
|
|
, wreq
|
|
, text
|
|
, lens
|
|
, sqlite-simple
|
|
, optparse-generic
|
|
, telegram-bot-simple
|
|
, telegram-bot-api
|
|
, servant-client
|
|
, http-client-openssl
|
|
, bytestring
|
|
, katip
|
|
hs-source-dirs: app
|
|
default-language: GHC2021
|
|
ghc-options: -threaded -with-rtsopts=-N
|