demobot/demobot.cabal

56 lines
1.6 KiB
Plaintext

-- Initial demobot.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: demobot
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Mats Rauhala
maintainer: mats.rauhala@iki.fi
-- copyright:
category: Web
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Bot.DSL
, Bot.Extension
, Bot.DSL.Network
, Bot.DSL.State
, Bot.DSL.Time
, Bot.Lib
, Bot.Log
-- other-modules:
-- other-extensions:
build-depends: base >=4.11 && <4.12
, text
, mtl
, bytestring
, time
, monad-logger
, exceptions
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable demobot
main-is: Main.hs
other-modules: Extensions
, Extension.Hello
, AppM
-- other-extensions:
build-depends: base >=4.11 && <4.12
, demobot
, text
, mtl
, bytestring
, time
, monad-logger
, exceptions
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall