diff options
author | dan <me@danrh.co.uk> | 2021-04-17 08:41:13 +0200 |
---|---|---|
committer | dan <me@danrh.co.uk> | 2021-04-17 08:41:13 +0200 |
commit | 766bc25be87ad66d9c850373e42c7d323f8d58db (patch) | |
tree | fad231549184eda76e03e40ddfab74c234db2960 /hs.cabal | |
parent | a26253c1efe45459b46edd4d06a4ee03d99eb6dd (diff) | |
download | bizexp-766bc25be87ad66d9c850373e42c7d323f8d58db.tar.gz bizexp-766bc25be87ad66d9c850373e42c7d323f8d58db.tar.bz2 bizexp-766bc25be87ad66d9c850373e42c7d323f8d58db.zip |
Create RestService, with state and an eval endpoint
Diffstat (limited to 'hs.cabal')
-rw-r--r-- | hs.cabal | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -22,14 +22,22 @@ maintainer: me@danrh.co.uk extra-source-files: CHANGELOG.md library - exposed-modules: BizExpr + exposed-modules: RestService -- Modules included in this library but not exported. - -- other-modules: + other-modules: BizExpr -- LANGUAGE extensions used by modules in this package. -- other-extensions: - build-depends: base ^>=4.14.1.0 + build-depends: base ^>=4.14.1.0, + text, + wai, + http-types, + warp, + aeson, + scotty, + containers, + stm hs-source-dirs: src default-language: Haskell2010 |