free-monad-example/free-monad-example.cabal

68 lines
1.8 KiB
Plaintext

cabal-version: 1.12
name: free-monad-example
version: 0.1.0.0
description:
Please see the README on GitHub at <https://github.com/sanchayanmaity/free-monad-example#readme>
homepage: https://github.com/sanchayanmaity/free-monad-example#readme
bug-reports: https://github.com/sanchayanmaity/free-monad-example/issues
author: Sanchayan Maity
maintainer: maitysanchayan@gmail.com
copyright: 2020 Sanchayan Maity
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/sanchayanmaity/free-monad-example
library
exposed-modules:
DB.Interpreter
DB.Language
Lib
Logger.Interpreter
Logger.Language
other-modules: Paths_free_monad_example
hs-source-dirs: src
ghc-options: -Wall -Wunused-binds
build-depends:
base >=4.7 && <5
, free
, postgresql-simple
, text
default-language: Haskell2010
executable free-monad-example-exe
main-is: Main.hs
other-modules: Paths_free_monad_example
hs-source-dirs: app
ghc-options: -Wall -Wunused-binds -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, free
, free-monad-example
, postgresql-simple
, text
default-language: Haskell2010
test-suite free-monad-example-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Paths_free_monad_example
hs-source-dirs: test
ghc-options: -Wall -Wunused-binds -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, free
, free-monad-example
, postgresql-simple
, text
default-language: Haskell2010