wai/wai-app-static/wai-app-static.cabal

111 lines
3.9 KiB
Plaintext
Raw Normal View History

2011-01-17 17:41:47 +03:00
name: wai-app-static
2016-08-17 15:30:52 +03:00
version: 3.1.6.1
2012-04-03 11:41:15 +04:00
license: MIT
2011-01-17 17:41:47 +03:00
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
2014-09-03 07:50:17 +04:00
maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
2011-01-17 17:41:47 +03:00
synopsis: WAI application for static serving
2014-12-21 12:27:53 +03:00
description: API docs and the README are available at <http://www.stackage.org/package/wai-app-static>.
2011-01-17 17:41:47 +03:00
category: Web, Yesod
stability: Stable
cabal-version: >= 1.8
2011-01-17 17:41:47 +03:00
build-type: Simple
homepage: http://www.yesodweb.com/book/web-application-interface
2011-09-23 17:23:11 +04:00
Extra-source-files:
2011-11-28 08:22:33 +04:00
images/folder.png
images/haskell.png
2013-09-12 07:58:53 +04:00
test/*.hs
2011-11-28 08:22:33 +04:00
test/a/b
tests.hs
2014-12-15 12:17:04 +03:00
README.md
2014-11-17 10:46:14 +03:00
ChangeLog.md
2011-01-17 17:41:47 +03:00
Flag print
Description: print debug info
Default: False
2011-01-17 17:41:47 +03:00
library
build-depends: base >= 4 && < 5
2015-12-30 09:22:11 +03:00
, wai >= 3.0 && < 3.3
, bytestring >= 0.9.1.4
2012-12-08 23:46:48 +04:00
, http-types >= 0.7
, transformers >= 0.2.2
2011-11-28 14:48:31 +04:00
, unix-compat >= 0.2
2012-09-10 18:11:23 +04:00
, directory >= 1.0.1
2012-05-09 09:12:13 +04:00
, containers >= 0.2
2011-11-28 21:12:47 +04:00
, time >= 1.1.4
2012-09-10 18:11:23 +04:00
, old-locale >= 1.0.0.2
2012-12-08 23:46:48 +04:00
, file-embed >= 0.0.3.1
2012-09-10 18:11:23 +04:00
, text >= 0.7
2012-12-08 23:46:48 +04:00
, blaze-builder >= 0.2.1.4
2016-03-13 19:50:17 +03:00
, cryptonite >= 0.6
, memory >= 0.7
, http-date
2012-12-08 23:46:48 +04:00
, blaze-html >= 0.5
, blaze-markup >= 0.5.1
2012-07-10 17:21:49 +04:00
, mime-types >= 0.1 && < 0.2
, unordered-containers >= 0.2
2013-09-12 11:07:39 +04:00
, template-haskell >= 2.7
, zlib >= 0.5
, filepath
2014-05-22 10:19:43 +04:00
, wai-extra >= 3.0 && < 3.1
2014-09-03 09:07:23 +04:00
, optparse-applicative >= 0.7
2015-12-30 09:22:11 +03:00
, warp >= 3.0.11 && < 3.3
2011-01-17 17:41:47 +03:00
exposed-modules: Network.Wai.Application.Static
2012-05-22 07:57:40 +04:00
WaiAppStatic.Storage.Filesystem
2012-05-22 08:47:48 +04:00
WaiAppStatic.Storage.Embedded
2012-05-22 08:22:55 +04:00
WaiAppStatic.Listing
WaiAppStatic.Types
2014-03-26 16:52:12 +04:00
WaiAppStatic.CmdLine
2012-05-22 08:22:55 +04:00
other-modules: Util
WaiAppStatic.Storage.Embedded.Runtime
WaiAppStatic.Storage.Embedded.TH
2012-06-21 07:59:41 +04:00
ghc-options: -Wall
extensions: CPP
if flag(print)
cpp-options: -DPRINT
2014-03-21 16:11:37 +04:00
Executable warp
Main-is: warp-static.hs
hs-source-dirs: app
Build-depends: base >= 4 && < 5
2014-05-22 10:19:43 +04:00
, wai-app-static
2014-03-21 16:11:37 +04:00
, directory >= 1.0
, containers >= 0.2
, bytestring >= 0.9.1.4
, text >= 0.7
, mime-types >= 0.1 && < 0.2
test-suite runtests
2011-11-26 17:57:29 +04:00
hs-source-dirs: test
main-is: ../tests.hs
type: exitcode-stdio-1.0
build-depends: base >= 4 && < 5
2012-11-11 12:46:25 +04:00
, hspec >= 1.3
2012-09-10 18:11:23 +04:00
, unix-compat
, time
, old-locale
, http-date
2014-05-22 10:19:43 +04:00
, wai-app-static
2015-01-15 09:49:52 +03:00
, wai-extra
2011-05-08 05:42:57 +04:00
, wai
, http-types
, network
, bytestring
2011-05-08 05:42:57 +04:00
, text
, transformers
2012-07-10 17:21:49 +04:00
, mime-types
, zlib
, filepath
, temporary
, mockery
2011-05-08 05:42:57 +04:00
-- , containers
ghc-options: -Wall
2011-01-17 17:41:47 +03:00
source-repository head
type: git
2011-07-22 18:02:16 +04:00
location: git://github.com/yesodweb/wai.git