yammat/yammat.cabal

151 lines
5.4 KiB
Plaintext
Raw Normal View History

2015-04-04 04:46:33 +00:00
name: yammat
2015-09-16 18:28:30 +00:00
version: 0.0.1
2015-04-04 04:46:33 +00:00
cabal-version: >= 1.8
build-type: Simple
Flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
Flag library-only
Description: Build for use with "yesod devel"
Default: False
library
exposed-modules: Application
Foundation
Import
Import.NoFoundation
Model
Settings
Settings.StaticFiles
Handler.Common
Handler.Home
Handler.Select
Handler.Restock
Handler.NewUser
Handler.Buy
Handler.Journal
Handler.Payout
Handler.Summary
Handler.Modify
Handler.CashCheck
2015-04-16 00:12:03 +00:00
Handler.Avatar
2015-07-20 23:14:21 +00:00
Handler.Barcode
Handler.Transfer
2015-04-04 04:46:33 +00:00
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -fwarn-tabs -O0
else
ghc-options: -Wall -fwarn-tabs -O2
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
ViewPatterns
TupleSections
RecordWildCards
build-depends: base >= 4 && < 5
, yesod >= 1.4.1 && < 1.5
, yesod-core >= 1.4.0 && < 1.5
, yesod-auth >= 1.4.0 && < 1.5
, yesod-static >= 1.4.0.3 && < 1.5
, yesod-form >= 1.4.0 && < 1.5
, classy-prelude >= 0.10.2
, classy-prelude-conduit >= 0.10.2
, classy-prelude-yesod >= 0.10.2
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 2.0
, persistent >= 2.0 && < 2.2
2015-04-06 21:12:58 +00:00
, persistent-postgresql >= 2.1.2 && < 2.2
2015-04-04 04:46:33 +00:00
, persistent-template >= 2.0 && < 2.2
, template-haskell
, shakespeare >= 2.0 && < 2.1
, hjsmin >= 0.1 && < 0.2
, monad-control >= 0.3 && < 0.4
, wai-extra >= 3.0 && < 3.1
, yaml >= 0.8 && < 0.9
, http-conduit >= 2.1 && < 2.2
, directory >= 1.1 && < 1.3
, warp >= 3.0 && < 3.1
, data-default
, aeson >= 0.6 && < 0.9
, conduit >= 1.0 && < 2.0
, monad-logger >= 0.3 && < 0.4
, fast-logger >= 2.2 && < 2.3
, wai-logger >= 2.2 && < 2.3
, file-embed
, safe
, unordered-containers
, containers
, vector
, time
-- snip
, mime-mail
, blaze-markup
2015-04-05 09:05:06 +00:00
, wai
2015-04-07 01:07:45 +00:00
, blaze-builder < 0.4.0.0
2015-04-09 10:35:34 +00:00
, split
2015-04-11 17:44:13 +00:00
, conduit-extra
2015-04-16 00:12:03 +00:00
, imagemagick
2015-09-16 18:28:30 +00:00
, cryptohash
, base64-bytestring
2015-04-04 04:46:33 +00:00
executable yammat
if flag(library-only)
Buildable: False
main-is: main.hs
hs-source-dirs: app
build-depends: base, yammat
ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
ViewPatterns
TupleSections
build-depends: base
, yammat
, yesod-test >= 1.4.2 && < 1.5
, yesod-core
, yesod
, persistent
, persistent-mysql
, resourcet
, monad-logger
, transformers
, hspec
, classy-prelude
, classy-prelude-yesod