mateamt/mateamt.cabal

65 lines
2 KiB
Text
Raw Normal View History

2019-03-22 22:34:01 +01:00
cabal-version: 2.4
-- Initial package description 'mateamt.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: mateamt
version: 0.0.0.0
synopsis: A whole new matemat
-- description:
-- bug-reports:
license: AGPL-3.0-only
license-file: LICENSE
author: nek0
maintainer: nek0@nek0.eu
-- copyright:
category: Web
extra-source-files: CHANGELOG.md
flag develop
description: compile mateamt in developer mode. Authentication disabled,
default: False
manual: True
2019-03-22 22:34:01 +01:00
executable mateamt
main-is: Main.hs
2019-04-15 22:23:25 +02:00
other-modules: API
, Model
, Model.User
2019-07-18 17:09:26 +02:00
, Model.Product
2019-04-21 17:27:15 +02:00
, Model.Auth
2019-07-21 14:42:45 +02:00
, Model.Amount
2019-08-09 20:54:06 +02:00
, Model.Journal
2019-04-15 22:23:25 +02:00
, Types
2019-04-17 07:51:15 +02:00
, Types.Auth
2019-07-18 17:09:26 +02:00
, Types.Product
2019-05-06 23:41:05 +02:00
, Types.Reader
2019-04-17 16:14:44 +02:00
, Types.Refine
, Types.User
2019-07-18 19:01:49 +02:00
, Types.Purchase
2019-07-27 16:34:28 +02:00
, Types.Amount
2019-08-09 20:54:06 +02:00
, Types.Journal
2019-03-22 22:34:01 +01:00
-- other-extensions:
build-depends: base ^>=4.12.0.0
2019-04-15 22:23:25 +02:00
, servant
, servant-server
, opaleye
, aeson
, text
2019-05-09 01:24:58 +02:00
, time
2019-04-15 22:23:25 +02:00
, product-profunctors
, postgresql-simple
, warp
2019-04-16 13:30:16 +02:00
, wai
, wai-logger
2019-04-15 22:23:25 +02:00
, http-api-data
2019-04-17 07:51:15 +02:00
, bytestring
2019-04-17 10:45:48 +02:00
, base16-bytestring
2019-04-21 17:27:15 +02:00
, random-bytestring
, containers
2019-05-06 23:41:05 +02:00
, stm
, mtl
2019-03-22 22:34:01 +01:00
hs-source-dirs: src
default-language: Haskell2010
if flag(develop)
cpp-options: -DDEVELOP