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
|
2011-02-28 19:26:26 +03:00
|
|
|
cabal-version: >= 1.8
|
2011-01-17 17:41:47 +03:00
|
|
|
build-type: Simple
|
2013-02-14 05:17:41 +04:00
|
|
|
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
|
|
|
|
2011-02-28 19:26:26 +03:00
|
|
|
Flag print
|
|
|
|
Description: print debug info
|
2011-05-21 20:37:21 +04:00
|
|
|
Default: False
|
2011-02-28 19:26:26 +03:00
|
|
|
|
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
|
2012-04-29 10:35:38 +04:00
|
|
|
, 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
|
2011-06-30 10:01:42 +04:00
|
|
|
, 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
|
2013-09-02 03:42:11 +04:00
|
|
|
, unordered-containers >= 0.2
|
2013-09-12 11:07:39 +04:00
|
|
|
, template-haskell >= 2.7
|
2013-09-02 03:42:11 +04:00
|
|
|
, zlib >= 0.5
|
2013-12-10 11:01:26 +04:00
|
|
|
, 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
|
2012-04-23 05:57:51 +04:00
|
|
|
|
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
|
2013-09-02 03:42:11 +04:00
|
|
|
WaiAppStatic.Storage.Embedded.Runtime
|
|
|
|
WaiAppStatic.Storage.Embedded.TH
|
2012-06-21 07:59:41 +04:00
|
|
|
ghc-options: -Wall
|
2011-02-28 19:26:26 +03:00
|
|
|
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
|
|
|
|
|
2011-02-28 19:26:26 +03:00
|
|
|
test-suite runtests
|
2011-11-26 17:57:29 +04:00
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: ../tests.hs
|
2011-02-28 19:26:26 +03:00
|
|
|
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
|
2011-06-30 10:01:42 +04:00
|
|
|
, 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
|
2011-02-28 19:26:26 +03:00
|
|
|
, network
|
|
|
|
, bytestring
|
2011-05-08 05:42:57 +04:00
|
|
|
, text
|
2011-05-21 20:37:21 +04:00
|
|
|
, transformers
|
2012-07-10 17:21:49 +04:00
|
|
|
, mime-types
|
2013-09-02 03:42:11 +04:00
|
|
|
, zlib
|
2015-11-05 17:12:07 +03:00
|
|
|
, filepath
|
|
|
|
, temporary
|
2016-07-23 22:50:21 +03:00
|
|
|
, mockery
|
2011-05-08 05:42:57 +04:00
|
|
|
-- , containers
|
2011-02-28 19:26:26 +03:00
|
|
|
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
|