datarekisteri/client/datarekisteri-client.cabal

52 lines
984 B
Plaintext
Raw Normal View History

2023-08-15 10:06:54 +03:00
cabal-version: 3.6
2023-09-21 07:37:07 +03:00
name: datarekisteri-client
2023-01-20 09:20:06 +02:00
version: 0.0.1
author: Saku Laesvuori
license: AGPL-3.0-or-later
license-file: COPYING.md
build-type: Simple
stability: alpha
2023-09-21 07:37:07 +03:00
executable datarekisteri-client
2023-04-10 11:44:51 +03:00
build-depends:
aeson,
base,
2023-08-15 10:06:54 +03:00
base64,
2023-09-21 07:37:07 +03:00
datarekisteri-core,
2023-04-10 11:44:51 +03:00
email-validate,
memory,
monad-logger,
morpheus-graphql,
morpheus-graphql-app,
morpheus-graphql-client,
morpheus-graphql-core,
mtl,
2023-09-15 18:05:58 +03:00
optparse-applicative,
process,
2023-04-10 11:44:51 +03:00
relude,
text,
time,
yesod,
yesod-auth,
containers,
wai,
warp,
wai-extra,
yesod-core,
yesod-static,
directory
2023-01-20 09:20:06 +02:00
main-is: Client.hs
2023-04-10 11:44:51 +03:00
other-modules:
Client.ApiRequests,
Client.Auth,
Client.FormFields,
Client.Handlers,
Client.Handlers.Applications,
Client.Handlers.Apply,
Client.Handlers.Profile,
Client.Handlers.VerifyEmail,
2023-09-11 17:22:42 +03:00
Client.Handlers.Members,
2023-09-21 07:37:07 +03:00
Client.Types
2023-09-07 18:36:39 +03:00
hs-source-dirs: src
2023-01-20 09:20:06 +02:00
default-language: Haskell2010