mateamt/mateamt.cabal

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-03-22 21:34:01 +00: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
executable mateamt
main-is: Main.hs
2019-04-15 20:23:25 +00:00
other-modules: API
, Model
, Model.User
, Model.Beverage
2019-04-21 15:27:15 +00:00
, Model.Auth
2019-04-15 20:23:25 +00:00
, Types
2019-04-17 05:51:15 +00:00
, Types.Auth
2019-04-17 14:14:44 +00:00
, Types.Beverage
, Types.Refine
, Types.User
2019-03-22 21:34:01 +00:00
-- other-extensions:
build-depends: base ^>=4.12.0.0
2019-04-15 20:23:25 +00:00
, servant
, servant-server
, opaleye
, aeson
, text
, time
, product-profunctors
, postgresql-simple
, warp
2019-04-16 11:30:16 +00:00
, wai
, wai-logger
2019-04-15 20:23:25 +00:00
, http-api-data
2019-04-17 05:51:15 +00:00
, bytestring
2019-04-17 08:45:48 +00:00
, base16-bytestring
2019-04-21 15:27:15 +00:00
, random-bytestring
, containers
, StateVar
2019-03-22 21:34:01 +00:00
hs-source-dirs: src
default-language: Haskell2010