added Aeson instances and JSON datatypes

This commit is contained in:
Dennis Frieberg 2020-08-29 15:26:40 +02:00
parent f41f84736a
commit dd2d653459
3 changed files with 62 additions and 3 deletions

View file

@ -25,14 +25,18 @@ source-repository head
library
exposed-modules:
Data.Aeson.TickLeiste
Lib
other-modules:
Paths_tickLeisteServer
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
aeson
, base >=4.7 && <5
, text
, tickLeiste
, uuid
default-language: Haskell2010
executable tickLeisteServer
@ -43,9 +47,12 @@ executable tickLeisteServer
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
aeson
, base >=4.7 && <5
, text
, tickLeiste
, tickLeisteServer
, uuid
default-language: Haskell2010
test-suite tickLeisteServer-test
@ -57,7 +64,10 @@ test-suite tickLeisteServer-test
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
aeson
, base >=4.7 && <5
, text
, tickLeiste
, tickLeisteServer
, uuid
default-language: Haskell2010