solidabis-koodihaaste/koodihaaste.cabal

52 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-10-15 19:47:54 +03:00
cabal-version: >=1.10
-- Initial package description 'koodihaaste.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: koodihaaste
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
2019-10-15 22:53:26 +03:00
license: BSD3
2019-10-15 19:47:54 +03:00
license-file: LICENSE
author: Mats Rauhala
maintainer: mats.rauhala@iki.fi
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable koodihaaste
2019-10-16 13:26:34 +03:00
ghc-options: -threaded -O2 -rtsopts
2019-10-15 19:47:54 +03:00
main-is: Main.hs
2019-10-15 19:53:38 +03:00
other-modules: Data.Language
, Data.NGram
, Data.Caesar
2019-10-15 21:01:57 +03:00
, API
, Server
, Solidabis.API
2019-10-15 22:52:03 +03:00
, Control.Monad.App
, Control.Lens
, Data.Config
2019-10-15 19:47:54 +03:00
-- other-extensions:
build-depends: base >=4.12 && <4.13
, servant
, servant-server
2019-10-15 23:11:07 +03:00
, optparse-generic
2019-10-15 21:01:57 +03:00
, servant-client
, servant-client-core
2019-10-15 19:47:54 +03:00
, text
2019-10-15 21:01:57 +03:00
, aeson
, http-client-tls
, mtl
, bytestring
2019-10-15 19:47:54 +03:00
, containers
2019-10-15 22:52:03 +03:00
, servant-lucid
, lucid
, warp
, yaml
2019-10-16 13:26:34 +03:00
, parallel
2019-10-15 19:47:54 +03:00
hs-source-dirs: src
default-language: Haskell2010